A.z
B.0
C.元素ch[5]的地址
D.字符y的地址
[单选题]有以下程序 main() { char ch[]="uvwxyz",*pc; pc=ch;printf("%c/n",*(pc+5)); } 程序运行后的输出结果是A.zB.0C.元素ch[5]的地址D.字符y的地址
[单选题]有以下程序main( ){ char ch[]="uvwxyz",*pc ;pc =ch; printf("%c/n",*(pc+5));}程序运行后的输出结果是A.)zB.)0C.) 元素 ch[5] 的地址D.) 字符 y 的地址
[单选题]有以下程序: main() {char ch[]="uvwxyz",*pc; pc=ch;printf("%c/n",*(pc+5)); } 程序运行后的输出结果是( )。A.zB.0C.元素ch[5]地址D.字符y的地址
[单选题]有以下程序main() {char ch[]=“uvwxyz”,*pc; Pc=ch; printf(“%c/n”,*(pc+5)); } 程序运行后的输出结果是( )。A.zB.0C.元素ch[5]的地址D.字符y的地址
[单选题]有以下程序:include main( ) char * p[ ] = {"3697" ,"2548" }; int i,j;long num =0有以下程序: #include <stdio.h> main( ) char * p[ ] = {"3697" ,"2548" }; int i,j; long num =0; for(i =0;i<2;i ++ ) { j =0; while(p[i][j]! ='/0') { if((p[i][j]-'0')%2) nu
[单选题]有以下程序: point(char *p){p+=3;} main() {char b[4]={'a','b','c','d',},*p=b; point(p);printf("%c/n",*p); } 程序运行后的输出结果是 ______。A.aB.bC.cD.d
[单选题]有以下程序main( ){ char s[ ]="ABCD",*p;for(p=s+1;p<s+4;p++)printf("%s/n",p);}程序运行后的输出结果是A.ABCD BCD CD DB.A B C DC.B C DD.BCD CD D
[单选题]有以下程序: main() { char s[]="ABCD", *p; for( p=s+1;p<s+4;p++) printf("%s/n",p); } 程序运行后的输出结果是( )。A.ABCD BCD CD DB.A B C DC.B C DD.BCD CD D
[单选题]有以下程序: include main( ) { char *p="abcde/0ghjik/0"; printf("%d/n",str有以下程序: #include<string.h> main( ) { char *p="abcde/0ghjik/0"; printf("%d/n",strlen(p) ); } 程序运行后的输出结果是A.12B.15C.6D.5
[单选题]有以下程序 main() { char s[]="ABCD",*p; for(p=s+1;p<s+4;p++)printf("%s/n",p); } 程序运行后的输出结果是A.ABCD BCD CD DB.A B C DC.B C DD.BCD CD D