What will be the output of the program? #include<stdio.h>
int i;
int fun();
int main()
{
while(i)
{
fun();
main();
}
printf("Hello
");
return 0;
}
int fun()
{
printf("Hi");
}1.hello
2.hi hello
3.no output
4. infinite loop
Posted Date:-2022-07-08 04:22:04