若有定义int a=5,b=2;则a%b的值为____,a/b的值为____。
查看答案
当调用函数时,实参是一个数组名,则向函数传送的是数组的____。
#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. 错