单项选择题

若有char ch[10],则下列字符串数组的赋值中不正确的是( )。

A.ch="welcome";
B.ch[0]='w';
C.strcpy(ch,"welcome");
D.char ch1[]="welcome";strcpy(ch,ch1);