1.

What will be the output of the program?_x000D_ #include_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ int i=0;_x000D_ i++;_x000D_ if(i<=5)_x000D_ {_x000D_ printf("IndiaBIX");_x000D_ exit(1);_x000D_ main();_x000D_ }_x000D_ return 0;_x000D_ }

A. Prints "IndiaBIX" 5 times
B. Function main() doesn't calls itself
C. Infinite loop
D. Prints "IndiaBIx"
Answer» E.


Discussion

No Comment Found

Related MCQs