下列语句中,不能对字符数组a进行正确初始化的是
char a[5]="Happy";
char a[6] = {'H', a','p', p,'y};
char a[]="Happy";
char a[] = {'H','a','p','p','y};
发表评论