New to c++ language. Need help.

Newbie Member
9Feb2010,06:31   #1
Vanna Guo's Avatar
I know this is a ridiculous question but I've only just started to learn c++ a few days ago, I'm trying to figure out how to add 12 and 33 together. So I want the sum to display 45.

this is what I have so far:

#include <iostream>
using namespace std;
int main ( ) {

int
a = 12;
b = 33;
char sum;
sum = a + b;

cout << "The sum of 12 and 33 is " << sum;
cout << "\n";

return 0;
}

please help me and my stupidity, and thank you very much!
Go4Expert Founder
9Feb2010,07:29   #2
shabbir's Avatar
Why on earth you are trying to add two numbers into a character?
Mentor
9Feb2010,12:52   #3
xpi0t0s's Avatar
Code:
int a=12;
int b=33;
int sum;
sum=a+b;
cout << a << "+" << b << "=" << sum << endl;