how to add two big strings in cpp code example
Example: how to concatenate two big strings without using strcat in c++
cin >> doubleNumber;
cin.ignore(); //ignores an end of line character
getline(cin, stringName);
cin >> doubleNumber;
cin.ignore(); //ignores an end of line character
getline(cin, stringName);