
以下程序:#include<stdio.h>#include<string.h>main(){char str[]="abcd\n\123\xab";printf("%d"
以下程序: #include<stdio.h> #include<string.h> main() {char str[]="abcd\n\123\xab"; printf("%d",(str)); } 运行后的输出结果是()。
A.10
B.9
C.7
D.14

以下程序: #include<stdio.h> #include<string.h> main() {char str[]="abcd\n\123\xab"; printf("%d",(str)); } 运行后的输出结果是()。
A.10
B.9
C.7
D.14
第1题
A.12
B.15
C.6
D.5
第2题
以下程序的输出结果是 【7】 。
#include "stdio.h"
main()
{int a=065;
printf("%d\n",--a);
}
第3题
以下程序#include "stdio、h"main(){ char *p="ABCDEF",*q;q=p+3;printf("%s/n",q);}的输出结果是()。
第4题
以下程序的输出结果是_____.
# include
main()
{ printf(“%d\n”,strlen(“IBM\n012\1\\”));
}
第5题
A.11,10
B.9,10
C.11,9
D.10,9
第6题
有以下程序: #include<stdio.h> #define X 5+6 main() {int a=2,c; C=X*2: printf("%d",C); } 程序运行后的输出结果是()。
A.17
B.22
C.16
D.11
第7题
以下程序输出的结果是【 】。 include <stdio.h> main() { int a=5,b=4,c=3,d; d=(a>b>c); printf("%d\n",d); }
第8题
A.100
B.80
C.64
D.32
第10题
A.741
B.963
C.852
D.875421
第11题
设已执行预编译命令#include<string.h>,以下程序段的输出结果是 char s[]=" an apple" ; printf("%d\n",strlen(s));
A.7
B.8
C.9
D.10