A.x[10]是一个char型变量,不能存字符串B.错误:error: invalid array assignment,可以改为strcpy(x,"hello");C.调用数组必须指出索引
strcpy(x,"hello");