How to Concatenate Two Strings

Here you will know that How to Concatenate Two Strings in CPP  with and without using strcat function.

strcat() function is a built-in C++ library function that concatenates (joins) two strings together.

Program Code to Concatenate Two Strings without strcat()

Output

Enter the First String: Code
Enter the Second String: Revise

String after Concatenation: CodeRevise

 

Program Code to Concatenate Two Strings with strcat()

Output

Enter the First String: Code
Enter the Second String: Revise

String after Concatenation: CodeRevise

 

 

Check out our other C++ programming Examples

 

 

 

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top