1.

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

A. IndiaBIX... IndiaBIX... IndiaBIX
B. IndiaBIX... IndiaBIX...
C. Error: cannot use control instructions in macro
D. No output
Answer» C. Error: cannot use control instructions in macro


Discussion

No Comment Found