- 1
whats the error
#include <iostream> using namespace std; int main() { int a,b,c; a=10; b=8; c=a+b; cout<<c; return 0 };
3 ответов
+ 1
May be here:
return 0;
}
+ 1
Your return statement needs a semicolon: return 0;
Not the curly bracket
0
thank you very much