#include <stdio.h> #define MINIMUM 25 #if defined(MINIMUM) + defined(MAXIMUM) #define MAXIMUM 125 #endif int main() { printf("%d %d\n", MAXIMUM, MINIMUM); return 0; }
125 25
Previous Question Next Question
Your comments will be displayed only after manual approval.