Answers for "Come concatenare stringhe in c++"

C++
0

Come concatenare stringhe in c++

char str1[] = "This ";
char str2[] = "is a string";
strcat (str1, str2); 
cout << str1 << endl;
Posted by: Guest on November-22-2020

Code answers related to "Come concatenare stringhe in c++"

Browse Popular Code Answers by Language