This is a simple program which takes 2 numbers, reverses them and prints their reversed sum. I have 2 problems
The problem is with this line:
cin >> num1 >> "" >> num2 ;
You cannot store the value got from the input into "". I believe you wanted something like:
""
cin >> num1 >> num2 ;