STRING CONCATENATION USING OPERATOR OVERLOADING
/*PROGRAM TO IMPLEMENT STRING CONCATENATION USING OPERATOR OVERLOADING*/ #include<conio.h> #include<iostream.h> #include<stdio.h> #include<string.h> class string_concat { char name[20]; public: void input() { gets(name); } void output() { cout<<name<<endl; } string_concat operator+(string_concat …