0

How do you make 2 variables store into another

#include <iostream> using namspace std; int main() { Int a; Int b; Int c cin >> a; cin >> b; (a+b=c); cout << c << " Is your sum"; //what is the correct synax? }

20th Feb 2017, 11:10 PM
Chandler
1 Answer
+ 3
c=a+b; try this :)
20th Feb 2017, 11:27 PM
Max_N
Max_N - avatar