Q. What will be the output of the following statements ?
Code:int a = 5, b = 2, c = 10, i = a>b
void main()
{ printf(“hello”); main(); }
β
Correct Answer: (C)
infinite number of times
int a = 5, b = 2, c = 10, i = a>b
void main()
{ printf(“hello”); main(); }
You must be Logged in to update hint/solution