早教吧 育儿知识 作业答案 考试题库 百科 知识分享

下列语句中,不正确的是:()。A.charstr[5]="hello";B.chars下列语句中,不正确的是:()。A.charstr[5]="hello";B.charstr[]={'h','e','l','l','o','\0'};C.charstr[5]={"hi"};D.charstr[100]="";

题目详情
下列语句中,不正确的是:(  )。 A.char str[5]="hello"; B.char s
下列语句中,不正确的是:(  )。
A.char str[5]="hello";
B.char str[]={'h','e','l','l','o','\0'};
C.char str[5]={"hi"};
D.char str[100]="";
▼优质解答
答案和解析
你确定是不正确的?在java中这些语法只有B是对的
A,数组申明中char str[] 不允许中括号中定义数组的长度,C、D同理