当调用函数时,实参是一个数组名,则向函数传送的是数组的____。
查看答案
#include “stdio.h” int m=13; int fun(int x , int y) { int m=2; return(x*y-m); } main____ {int a=7,b=6; printf(“%d”,fun(a,b)/m); }
main() { int x=1,y=0,a=0,b=0; switch(x){case 1: switch(y) {case 0:a++;break; case 1:b++;break; } case 2:a++;b++;break; }printf(“a=%d,b=%d”,a,b);}运行结果为:____
所谓变量,就是在程序运行过程中其值不可以改变的量。( )
A. 对
B. 错
C语言中所有字符串都是以‘\0’结束的。( )
A. 对
B. 错