下列标识符中可用作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));
填空题以下程序运行后的输出结果是()。 main( ) {int a=1,b=3,c=5; if(c=a+b) printf(“yes”); else printf(“not”); }
填空题以下程序运行后的输出结果是()。 main( ) {char m; m=‘B’+32;printf(“%c”,m); }