-->
当前位置:首页 > 题库

题库 第5986页

  • 最新
  • 浏览
  • 评论

单选题:Which declaration of the two-dimensional array is **valid**?

Luz5年前 (2021-05-10)690
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?

Luz5年前 (2021-05-10)823
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` ,

Luz5年前 (2021-05-10)774
According to the following definition of function `fun` , ``` void fun(int n, double x) { …… } ```which one is the**…

单选题:According to the statement

Luz5年前 (2021-05-10)599
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

Luz5年前 (2021-05-10)804
Consider the following definitions of function `fun` , which one is **correct** ? @[D](1)A. ``` double fun(int x,…

单选题:According to the statement

Luz5年前 (2021-05-10)590
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 ( ).

Luz5年前 (2021-05-10)681
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

Luz5年前 (2021-05-10)785
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 ( ).

Luz5年前 (2021-05-10)647
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 ( ).

Luz5年前 (2021-05-10)667
The output of this program is ( ).```#define add(a,b) a+bint main(){ printf("%d\n",5*add(3,4)); return 0;}``` @[B]…