陷阱:C字符串使用=和==

char a_string[10];

a_string="Hello"  非法

strcpy(a_string,"Hello");  合法