String concatenation in C
C program to concatenate two strings; for example, if the two input strings are "C programming" and " language" (note the space before language), then the output will be "C programming language." To concatenate the strings, we use the strcat function of "string.h", to dot it without using the library function, see another program below.
output:
Enter the first string
programming
Enter the second string
skills
String obtained on concatenation:programmingskills