When General Sherman took the Union Army from Atlanta to Savannah he____much of the land and farms along the way. It was a ____time.
查看答案
挂霜菜主料一般需要加工成( )、片或丸子。
A. 粒
B. 块
C. 细末
D. 糊状
若有宏定义:#define F(n) (n)* (n)* (n)则表达式F(1+2)的值为()。
A. 3
B. 27
C. 7
D. 9
若程序中定义了这样的函数int a(int a,int b){ return (a+b);}并将其放在调用语句之后,则在调用之前可以对该函数进行说明,以下选项中错误的说明是()。
A. int a(int a,b);
B. int a(int,int);
C. int a(int b,int a);
D. int a(int x,int y);
以下对C语言函数的有关描述中,正确的是()。
A. 函数可以没有返回值,如果确定没有返回值,函数类型用void修饰
B. 函数可以嵌套调用也可以嵌套定义
C. 在函数中碰到return就要返回,如果有多个return可以多次返回
D. 调用函数时,实参的值可以是确定的值也可以是不确定的值