请读程序段: char str[]="ABCD",*p=str print("%d\n",*(p+4)); 程序段的输出结果是______。
A.68
B.O
C.字符'D'的地址
D.不确定的值
第1题:
请读程序段:char str[]="ABCD",*p=str;printf("%d\n",*(p+4));程序段的输出结果是 ______。
A.68
B.0
C.字符D的地址
D.不确定的值
第2题:
下列程序的输出结果是( )。 char *p1="abcd", *p2="ABCD", str[50]="xyz"; strcpy(str+2,strcat(p1+2,p2+1)); printf("%s",str);
A.xyabcAB
B.abcABz
C.ABabcz
D.xycdBCD
第3题:
以下程序段执行后输出的结果是()。 char str[]="ABCD",*p=str; printf("%dn",*(p+4));
A.不确定的值
B.字符'D'的地址
C.68
D.0
第4题:
请读程序段: char str[]="ABCD",*p=str; printf("%d\n",*(p+4)); 程序段的输出结果是______。
A.68
B.0
C.字符'D'的地址
D.不确定的值
第5题:
请读程序段: char str[]="ABCD",*p=str, printf("%d\n",*(p+4)); 程序段的输出结果是______。
A.68
B.0
C.字符'D'的地址
D.不确定的值