题目内容

If a function can only be called by other functions in this file, it is called an internal function.

查看答案
更多问题

int a, b; void fun() {a=100; b=200; } main() { int a=5, b=7; fun(); printf("%d%d\n", a,b); } output of the program is ( ).

A. 100200
B. 57
C. 200100
D. 75

The following statements or statement groups that do not form an infinite loop are ( )

A. n=0; do{++n;} while(n<=0);
B. n=0; while(1) {n++;}
C. n=10; while(n);{n--;}
D. for(n=0,i=1; i++) n+=1;

In the following expressions, the expression that is not equivalent to "(E)" in while (E) is ()

A. (!E=0)
B. (E>0 || E<0)
C. (E==0)
D. (E!=0)

The output of the following program is ______ int main (void) { int n=12345,d; while(n!=0) { d=n%10; printf("%d",d); n/=10; } return 0; }

答案查题题库