The following statement that cannot output character a is (Note: the ASCII code value of character a is 65, and the ASCII code value of character a is 97)
A. printf("%c\n",'a'-32);
B. printf("%d\n",'A');
C. printf("%c\n",65);
D. print-f("%c\n",'B'-1);
查看答案
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};