📅  最后修改于: 2022-03-11 15:04:37.359000             🧑  作者: Mango
char str[1024] = "Hello World";
char tmp[2] = "."; //Has to be of size 2 because strcat expects a NULL terminated string
strcat(str, tmp);