#include #include int main() { char s1[30]; char s2[14] = "University of"; char s3[15] = " C Programming"; strcpy(s1, s2); strncat(s1, s3, sizeof(s1) - strlen(s1) - 1); printf("%s\n", s1); return 0; }