Functions called in C language can only be library functions.
查看答案
Function is the main part of C program.
C language allows two kinds of annotation: single line annotation and block annotation
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.