题目内容

The output of the following program isint i=2 ;printf(“%d%d%d”,i*=2,++i,i++) ;

A. 4,5,5
B. 8,4,3
C. 4,4,5
D. 4,5,6

查看答案
更多问题

The definition of a function is as followsdouble fun(int x, double y) { …… }The correct function prototype of the function is declared as follows:

A. double fun (int x,double y)
B. fun (int x,double y)
C. double fun (int ,double );
D. fun(x,y) ;

According to C51 language, the type of function return value is determined by ().

A. Expression type in return statement
B. The main calling function type when the function is called
C. This function is called temporarily by the system
D. The type of function specified when defining a function

The following correct description is.

A. Function definitions can be nested, but function calls cannot be nested
B. Function definitions cannot be nested, but function calls can be nested
C. Function definition and function call can not be nested
D. Function definition and function call can be nested

The following statements are ()

A. int a[10]={0,0,0,0,0};
B. int a[10]={} ;
C. int a[ ] = {0} ;
D. int a[10]={10*1} ;

答案查题题库