当前位置:首页
> Luz 第6143页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:Which statement** can** initialize a one-dimensional array?
Which statement** can** initialize a one-dimensional array? @[C](1)A. int a[10]=(0,0,0,0,0);B. int a[2]={0,1,2};C. int…
单选题:How many times will the loop be executed?
How many times will the loop be executed?```#include int main(){ int a=0; while (a=0) { printf("%d",a);…
单选题:It is an array initialization:
It is an array initialization:``` int a[3]={0} ; ```Which one is **invalid** to refer to particular elements of the arr…
单选题: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 ;…