1.

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

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