MCQOPTIONS
Saved Bookmarks
| 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 |
| 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 | |