The following statement that can properly initialize the one-dimensional array a is ( ).
A. int a[10]=(0,0,0,0,0);
B. int a[10]={};
C. int a[]={0};
D. int a[10]={10*1};
查看答案
C programs are always executed from the first statement of the main function.
The following statement is wrong ( ).
A C program can contain multiple functions with different names
B. A C program can only have one main function
C program in writing, there are strict indentation requirements, otherwise it can not be compiled through
D. The main function of C program must use main as the function name
do while statement executes the loop body first and then judges the conditions. The loop body executes at least once.
while statement and do while statement have the same function