A. 67,D B,C C,D D. 不确定的值
A. '\t' B. "A" C. 65 D. A
A. B. include<stdio.h>int main(){printf("hello world\\n");return 0;} C. B. D. include<stdio.h>int man(){printf("hello world\\n");return 0;} E. C. F. include<stdio.h>int main(){printf("hello world\\n")return 0;} G. D. H. include<stdio.h>int main(){print("hello world\\n");return 0;}
A. 算术运算、关系运算、逻辑运算、赋值运算 B. 算术运算、赋值运算、关系运算、逻辑运算 C. 关系运算、赋值运算、算术运算、逻辑运算 D. 关系运算、逻辑运算、算术运算、赋值运算
A. continue语句的作用是结束整个循环的执行 B. 只能在循环体内和switch语句体内使用break语句 C. 在循环体内使用break语句或continue语句的作用相同 D. 从多层循环嵌套中退出时,只能使用goto
A. int f(x,y:int) B. int f(int x ,int y) C. int f(int x,y) D. int f(int x;int y)
A. int型 B. float型 C. double型 D. 由系统当时的情况而定
A. x=12 B. x=13 C. x=17 D. x=18
A. 2,0 B. 5,0 C. 5,5 D. 2,5
A. puts() B. putchar() C. getchar() D. gets()