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