以下程序的运行结果是 ___ char *p="tomorrow"; p=p+2; printf("%s",p);
morrow
举一反三
- 以下程序的运行结果是voidfun(char*p){char*q=p;while...);printf("%s",st);}
- 以下程序的运行结果是()。char *p="teacher";p=p+3;printf("%s",p); A: cher B: acher C: eacher D: teacher
- main { char s[ ]=“1234”, * p; for(p=s; p<s+3; p++) printf(“%s”, p); } 程序结果是
- 下列程序段的运行结果是_____。Char a='m' ,*p ;P=&a;Printf("%c",*p);
- 下面程序段的运行结果是()注意输出结果的格式#includevoidmain(){char*p=”abcdefgh”;p+=3;printf("%s",p);}
内容
- 0
以下程序段的运行结果是()。inta[2],*p=a;*p=2;p++;*p=5;printf("%d,",*p);p--;printf("%d\n",*p);
- 1
以下程序的输出结果为( )。 int main(){ char s[]="123",*p; p=s; printf("%c%c%c\n",*p,*++p,*++p); }
- 2
以下程序的输出结果是(). main() {char str[]="ABCD",*p=str;printf("%s\n",p);}
- 3
#include #include main() {char str[][20]={"One*World","One*Dream!"}; char *p=str[1]; printf(“%d,”,strlen(p)); printf("%s ",p); } 程序运行后的输出结果是
- 4
以下程序的运行结果是______。 #include main() { staticcharc[]='china'; char*p=c; while(*p) printf('%c',*p++-32); printf(' '); }