How do I get the sum of two strings that are numbers? For example:
string num1 = "12"; string num2 = "4"; string sum = num1 + num2; So string sum will equal "16"
How do I do this in c++?
I tried doing it with ascii characters but it does not work I cannot convert the string to an integer as well