printf("%d%d\n",strlen(st),sizeof(st)); } A. 9 9 B. 5 20 C. 13 20 D. 20 20 相关知识点: 试题来源: 解析 B。[解析]从题目中可知,’\O’、’\t’、’\\’分别为一个字符,而sizeof是求字节个数的函数,其中包括’\O’占的字节,strlen函数是求数组长度的函数;其以’\0’结束,...
以下程序的输出结果是___。 main() { char st[20]="hello\0\t\\"; printf("%d%d\n",strlen(st),sizeof(st)); } A. 99 B. 520 C. 820 D. 1120 相关知识点: 试题来源: 解析 B 答案:B 知识点:知识点/选择题/C7数组/字符串含转义字符T反馈 ...
题目 以下程序的输出结果是 main() { char st[20]= "hello\0\t\\\"; printf(%d %d \n",strlen(st),sizeof(st)); } A. 9 9 B. 5 20 C. 13 20 D. 20 20 相关知识点: 试题来源: 解析 B.5 20 答案:B知识点:知识点/选择题/C7数组/字符串含转义字符T 反馈 收藏 ...
百度试题 结果1 题目写出下列程序段的输出结果。 char str[]="hello\tworld\n"; printf("%d, %c\n", sizeof(str), *(str+10));相关知识点: 试题来源: 解析 最佳答案 13, d 反馈 收藏
以下程序的输出结果是___。 main() { char st[20]="hello\0\t\\"; printf("%d%d\n",strlen(st),sizeof(st)); } A. 99 B. 520 C. 1320 D. 2020 相关知识点: 试题来源: 解析 B 答案:B 评析: 本题主要考查C语言的字符串与库函数。 C语言中字符串是以'\0'字符结束的,且strlen()...
写出以下程序运行后的输出结果。#include"stdio.h"#include"string.h"intmain(){charst[20]={"hello\0\t\\\""};printf("%d,%d",strlen(st),sizeof(st));return0;} 参考答案:第一空: 5,20;5,20 点击查看答案进入小程序搜题你可能喜欢4月份生产合格品25件,料废品5件,加工失误产生废品2件,计价单价...
我有道C语言题目~有兴趣请做做~以下程序的输出结果是( ).main(){ char st[20]= “hello\0\t\\\”;printf(%d %d \n”,strlen(st),sizeof(st));A) 9 9 B) 5 20 C) 13 20 D) 20 20
以下程序的输出结果是 ___。 main() { char st[20]="hello'、0\t\\"; printf("%d%d\n",strlen(st),sizeof(st)); }A.99 B.520 C.1320 D.2020答案 查看答案发布时间:2022-05-10 更多“以下程序的输出结果是 ___。main(){char st[20]="hello'、0\t\\"; printf("%d%d\n",strlen(st)...
以下程序的输出结果是:void main(){ char str[20]="hello!\0world!\t\\"; printf("%d %d",strlen(str),sizeof(str));}A、15 20B、20 20C、6 20D、16 20
有以下程序:#include main(){ int s,t,A=10; double B=6; s=sizeof(A); t=sizeof(B); printf("%d,%d",s,t);}在VC6.0平台上编译运行,程序运行后的输出结果是( ) A、10,6 B、4,4 C、2,4 D、4,8 点击查看答案进入小程序搜题 你可能喜欢 轨道主要由[填空(1)] 、[填空(2)] 、[填空...