制作于2018年2月7日
char s[] = {'s', 'a', 'b', '\0'}
\0表示字符串结束
char s[] = "sab"
自动添加\0
char s2[] = "sab1" "sab2"