C++ program to concatenate two string


Combined two string or Concatenate two string means add both string with each other, we can perform this operation using library function or without library function. For example if first string is john and second string is porter then after combined these string output will be johnporter.

C++ program to concatenate two strings

#include<iostream.h>
#include<conio.h>
#include<string.h>

void main()
{
char *ch1="john";
char *ch2="porter";
char *ptr;
clrscr();
cout<<"1 st String: "<<ch1;
cout<<"\n 2 nd String: "<<ch2;
strcat(ch1,ch2);
cout<<"\nCombined string is: "<<ch1;
getch();
}

Output

1 st String: john
2 nd String: porter
Combined string is: johnporter

0 comments: