#include #include #include int main() { char s1[5] = "hello"; char s2[5] = "world"; char *new; new = strcat(s1, s2); printf("%s\n", new); }