Write a program to read 2 strings and first string appends on the 2nd string | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Write a program to read 2 strings and first string appends on the 2nd string

for eg.if str1 is GOOD and str2 is MORNING the result should be MORNINGGOOD

13th Feb 2018, 6:38 AM
Sree Saradhaa
Sree Saradhaa - avatar
3 Answers
+ 3
#include<cstring> #include<iostream> int main() { char a[10]="hi" , b[10]="there!!"; cout<<strcat(b,a); } //output there!!hi
13th Feb 2018, 7:25 AM
‎ ‏‏‎Anonymous Guy
0
string a="hi", b="there!"; cout<<b+a; //output there!hi
13th Feb 2018, 6:50 AM
‎ ‏‏‎Anonymous Guy
0
no using strcat (appends!)
13th Feb 2018, 7:01 AM
Sree Saradhaa
Sree Saradhaa - avatar