#include <stdio.h> #define max(p) p int main() { int n = 1; switch (n) { case max(2): printf("Right...\n"); case max(1): printf("Wrong...\n"); break; } }
Wrong...
Previous Question Next Question
Your comments will be displayed only after manual approval.