// This is test program for strcat function from string.h #include #include int main() { char s1[] = "Hello,"; char s2[] = " World!"; puts(strcat(s1, s2)); return 0; }