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