Home » C Programming » C Preprocessor

What will be the output of the program? #include<stdio.h> #define FUN(arg) do\ {\ if(arg)\ printf("CuriousTab...", "\n");\ }while(--i) int main() { int i=2; FUN(i<3); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!