Answer (Choose 1 answer)
What is the output when the sample code below is executed?
int i=0;for(; ;)
printf("This is a loop ");
if(i>0)
printf("in C program");
A. This is a loop in C program
B. Nothing (no output)
C. This is a loop
D. in C program
E. Garbage value
E31