网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

请读程序片段(字符串内没有空格字符): printf("%d\n",strlen("ATS\n012\1\\"));上面程序片段的输出结果是_______。

A.11

B.10

C.9

D.8


参考答案

更多 “ 请读程序片段(字符串内没有空格字符): printf("%d\n",strlen("ATS\n012\1\\"));上面程序片段的输出结果是_______。A.11B.10C.9D.8 ” 相关考题
考题 读下面程序段(字符串内没有空格字符): printf("%d\n",strlen("ATS\n012\1\\"));其输出结果是( )。A.11B.10C.9D.8

考题 有以下程序: #includestdio.h #includestrin9.h main( ) {printf{"%d\n",strlen("%d\n",strlen("ATS\n012\|"));} 程序运行后的输出结果是( )。A.3B.8C.4D.9

考题 请读程序片段: int i=65536;printf("%d”\n”,i; 上面程序片段的输出结果是 ( )A.65536B.0C.有语法错误,无输出结果D.-l

考题 有以下程序#include stdio.h#include string.hmain( ){ printf("%d\n",strlen ("ATS\n012\1") ); }程序运行后的输出结果是A)3B)8C)4D)9

考题 有以下程序:includestdio.hincludestrin9.hmain( ){printf{%d\n,strlen(%d\n,strlen(ATS\n012\|));}程序运行后的输出结果是( )。A.3B.8C.4D.9

考题 请读程序片段(字符串内没有空格字符):printf("%d\n",stlen("ATS\n012\1\ \”)); 上面程序片段的输出结果是 ( )A.11B.10C.9D.8

考题 请读程序片段(字符串内没有空格字符): printf("%dn", strlen("ATSn0121")); 上面程序片段的输出结果是()A.11B.9C.10D.8

考题 【单选题】以下程序片段(字符串内没有空格字符)的输出结果是()。 printf("%dn",strlen("ATSn0121"));A.7B.8C.9D.10

考题 19、请读程序片段: int a,b; for(a=1,b=1; a<=80; a++,b++) { if(b<20) continue; if(b%2==1) { b+=2; break; } } printf("%d\n",a); 上面程序的输出结果是A.80B.20C.21D.23