C++

Can someone help me out. If I run a test on it, it says error.
//Display Welcome to the console
#include <iostream>
using namespace std;

int main ()
{
cout << " Welcome to C++!" << endl;
return O;
}
You need to return zero, looks like you are returning O.
Topic archived. No new replies allowed.