单项选择题
下列标识符中可用作C语言用户标识符的一组是()
A.A B.B C.C D.D
填空题 以下程序段的输出结果是()。 struct node {int a; float b; char c[10];} printf(“%d”,sizeof(struet node)) ;
填空题 以下程序段的输出结果是()。 int a=l,b=2,*p=&a,*q=&b; p=q;*p=3; printf(“%d”,b);
填空题 以下程序段的输出结果是()。 char s[]= “\\140\140abc\t”; prntf(“%d\n”,strlen(s));