-
下面程序段的运行结果是char *p="abcdefgh";p+=3;printf("%d\n",strlen(strcpy(P,"ABCD"))); A.8
-
下面程序段的运行结果是char*s=abcde;s+=2;printf(\%d s);A.cdeB.字符cC.字符c的地址D.无
-
下面程序段的运行结果是()。#include stdio.hmain(){char s[]=example! *tt=swhile( *t!=p){ printf(\%c *t-32)t++}}
-
有以下程序main(){char *s=abcde; s+=2; printf(\%ld\n s);}程序运行后的输出结果是( )A.cdeB
-
以下程序运行后的输出结果是______。 main() { char*s=abcde;s+=2;printf(\%1d\n s);}A.cdeB.
-
下面程序段的运行结果是()。(注:└┘代表空格)#include stdio.hmain(){ char s[6]s=abcdprintf(\\%s\\
s)}
-
下面程序段的运行结果是()。#include stdio.hmain(){int m=10 n=20char *format=\%s m=%d n=%d\nm*=nprintf(format m*=n m n)}