0
Why can't i make it like this:
int a; a=100 int b; b=a cout<<a+b<<endl;
3 Respostas
+ 2
Two ; are missing.
+ 2
thx m8
+ 1
there is an error in line 2 & 4
there should be a semicolon at the end...!!
corrected:
int a;
a=100;
int b;
b=a;
cout<<a+b<<endl;