📅  最后修改于: 2022-03-11 15:04:35.744000             🧑  作者: Mango
#include
#include
int main() {
char str[80];
strcpy(str, "these ");
strcat(str, "strings ");
strcat(str, "are ");
strcat(str, "concatenated.");
printf("%s\n", str);
}