It is allowed to include another complete cycle structure in one cycle.
查看答案
break statement cannot be used in any statement other than a loop statement and a switch statement.
int main(void) { int a=1,b; for(b=1;b<=10;b++) { if(a>=8) break; if(a%2==1) { a+=5; continue; } a-=3; } printf("%d\n",b); return 0;} The output of the program is ( ).
A. 3
B. 4
C. 5
D. 6
Function definition cannot be nested.
You can output a string with "%c".