1. strcat 拼接 【注意:拼接後的字符串長度不能超過字符串申請的內存空間長度,不然會報錯】char s1[30] = {'L', 'm', 'j', '\0', 'L', 'o', 'v', 'e', '\0'}; strcat(s1, "OC"); printf("%s", s1);