• 2022-06-28
    以下程序的运行结果是 ___ char *p="tomorrow"; p=p+2; printf("%s",p);
  • morrow

    内容

    • 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(' '); }