String

C++ Program to Concatenate Two Strings

Here you will get C++ program to concatenate two string without using library function. Below program will read two strings from user and then concatenate them to form third string. Output Enter first string:Hello Enter second string:World The concatenated string is HelloWorld