题库 第5986页
单选题:Which declaration of the two-dimensional array is **valid**?
Which declaration of the two-dimensional array is **valid**? @[C](1)A. int a[3][];B. float a(3,4);C. double a[1][4];D.…
单选题:Which line is **NOT** correct in the following program?
Which line is **NOT** correct in the following program?```1. int main()2. {3. int a[3]={1};4. int i;5. scanf(“%d”,&a);6.…
单选题:According to the following definition of function `fun` ,
According to the following definition of function `fun` , ``` void fun(int n, double x) { …… } ```which one is the**…
单选题:According to the statement
According to the statement ``` int a[][3]={1,2,3,4,5,6,7}; ```The size of the first dimension of the array a is ( )。…
单选题:Consider the following definitions of function `fun` , which on
Consider the following definitions of function `fun` , which one is **correct** ? @[D](1)A. ``` double fun(int x,…
单选题:According to the statement
According to the statement ``` int a[3][2]={1, 2, 3, 4, 5, 6} ; ```which element evaluates 6? @[B](1)A. a[3][2]B. a[2…
单选题:The result of this program is ( ).
The result of this program is ( ). ```int func(int a,int b) { return (a+b); }main( ){ int x=2,y=5,z=8,r ;…
单选题:After execute the following program, which one of the following
After execute the following program, which one of the following option will be printed on screen?```void fun(int);main(…
单选题:The result of the following program is ( ).
The result of the following program is ( ).```fun(int x, int y, int z) { z=x*x+y*y; } main( ) { int a=31; fun(…
单选题:The output of this program is ( ).
The output of this program is ( ).```#define add(a,b) a+bint main(){ printf("%d\n",5*add(3,4)); return 0;}``` @[B]…