Q. What will be the output of the program? #include<stdio.h>int i;int fun();int main(){ while(i) { fun(); main(); } printf("Hello\n"); return 0;}int fun(){ printf("Hi");} (Solved)
1. hello
2. hi hello
3. no output
4. infinite loop
- a. hello
1. hello
2. hi hello
3. no output
4. infinite loop