Q.

What is output of below program?
int main()
{
for(; ;);
for(; ;);
printf("Hello");
return 0;
}

A. Compilation Error
B. Runtime Error
C. Nothing is printed
D. Hello is printed infinite times
Answer» C. Nothing is printed
1.2k
0
Do you find this helpful?
17

Discussion

No comments yet