下面语句的输出结果是_______。 printf("%d\n",strlen("\t\"\065\xff\n"));A.14B.8C.5D.输出项不合怯,无正常输出
下面语句的输出结果是_______。 printf("%d\n",strlen("\t\"\065\xff\n"));
A.14
B.8
C.5
D.输出项不合怯,无正常输出
相关考题:
下面程序段的输出结果是( )。#includestring.hvoid main(){char strl[10]={’s’,’t’,’u’,’d’,’e’,’n’,’t’};printf("%d\n",strlen(strl));}A.7 B.8 C.10 D.存在语法错误
有以下程序: #includestdio.h #includestrin9.h main( ) {printf{"%d\n",strlen("%d\n",strlen("ATS\n012\|"));} 程序运行后的输出结果是( )。A.3B.8C.4D.9
以下程序的输出结果是( )。 char str[15]=”hello!”; printf(“%d\n”,strlen(str)); A.15 以下程序的输出结果是( )。 char str[15]=”hello!”; printf(“%d\n”,strlen(str));A.15B.14C.7D.6
若有以下定义和语句char s1[10]=”aBcd!”,*s2=”\n123\\”printF(“%d%d\n”,strlen(sl),strlen(s2));则输出结果是A.5 5B.10 5C.10 7D.5 8
以下程序的输出结果是______。 main() { char str[12]={'s','t','r','i','n','g'}; printf("%d\n",strlen(str)); }A.6B.7C.11D.12
有以下程序:includestdio.hincludestrin9.hmain( ){printf{%d\n,strlen(%d\n,strlen(ATS\n012\|));}程序运行后的输出结果是( )。A.3B.8C.4D.9
以下程序的输出结果是() #include #include main( ) {char str[12]={‘8’,‘t’,‘r’,‘i’, ‘n’,‘g’,‘、0’,‘a’}; printf(“%d/n”,strlen(str));} A、6B、7C、8D、12
设有定义语句:charstr[][20]={"Hello","Beijing"},*p=str;()则printf("%d/n",strlen(p+20));输出结果是A、0B、5C、7D、20
单选题以下程序的输出结果是() #include #include main( ) {char str[12]={‘8’,‘t’,‘r’,‘i’, ‘n’,‘g’,‘、0’,‘a’}; printf(“%d/n”,strlen(str));}A6B7C8D12
单选题以下语句的输出结果是( )。printf(%d,strlen(\t\\065\xff));A5B8C14D输出项不合法,无正常输出