int x = 0;
for ( ; ; )
{
if (x++ == 4)
break;
continue;
}
printf("x=%d\n", x);
Choice a: x=0
Choice b: x=1
Choice c: x=4
Choice d: x=5
Choice e: x=6
Learn C programming skills, test your c skill. C Interview questions.
No comments:
Post a Comment