A.charstr[5]=”good!”
B.charstr[]=”good!”
C.char*str=”good!”
D.charstr[5]={‘g’,’o’,’o’,’d’}
第1题:
以下能正确进行字符串赋值、赋初值的语句是______。
A.char s[5]:{'a','e','i','o','u'};
B.char *s; s="good";
C.char s[5]="good";
D.char s[5]; s="good";
第2题:
strcopy函数多用来进行字符串的赋初值。
第3题:
【单选题】以下不能正确进行字符串赋初值的语句是()
A.char str[5]= "good!";
B.char *str="good!";
C.char str[]="good!";
D.char str[5]={'g', 'o','o', 'd'};
第4题:
对以下说明语句 int a[10]={6,7,8,9,10}; 的正确理解是()。
A.将5个初值依次赋给a[1]至a[5]
B.将5个初值依次赋给a[0]至a[4],其余元素赋为0
C.将5个初值依次赋给a[6]至a[10]
D.因为数组长度与初值的个数不相同,所以此语句不正确
第5题:
char str[5]= "good!"能正确进行字符串赋初值。