void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);}
void main()
{
int x=0;
for( ; ; )
if( x++ == 4 ) break;
continue;
}
printf("x=%d", x);
x=0
x=5
x=4
x=1
Error
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
Explanation Not Provided
Be The First To Comment