Q57
What will be printed if the following code is executed? void main() int x=0; for( ; ; ) if( x++ == 4 ) break; continue; printf("x=%d", x);
A.
x=0
B.
x=5
AnswerC.
x=4
D.
x=1
E.
Error
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board