关注微信公众号《课帮忙》查题 关注微信公众号《课帮忙》查题 关注微信公众号《课帮忙》查题 关注微信公众号《课帮忙》查题 关注微信公众号《课帮忙》查题 关注微信公众号《课帮忙》查题 公告:维护QQ群:833371870,欢迎加入!公告:维护QQ群:833371870,欢迎加入!公告:维护QQ群:833371870,欢迎加入! 2022-07-26 若有定义char*s=“hello”;则sizeof(s)求出其结果为5。 若有定义char*s=“hello”;则sizeof(s)求出其结果为5。 答案: 查看 举一反三 若有定义char s[] = {“hello”};则sizeof(s)的大小为5。 若有定义char s[5] = { 'h', 'e', 'l', 'l', 'o' };则printf(“%s”,s);的输出结果为( ) A: h B: 输出数组s的地址 C: 输出字符串hello后乱码 D: hello 若有char st[20]="hello "; ,则执行printf("%d,%d ",strlen(st),sizeof(st)); 后的输出结果为()