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