我现在正在玩C并尝试理解字符串.有人可以解释为什么这是有效的:
char test[] = "test";
以下为什么没有?
char test[255]; test = "test";
c string
c ×1
string ×1