Strings Concatenate |
C program to concatenate two strings, for example, if the first string is "C " and the second string is " Program" then on concatenating these two strings we get the string "C Program." To concatenate two strings we use Strcat function of string.h, to concatenate without using the library function.
C Program to concate string
Example #1:
0 Comments