#include

using namespace std;

int main()

{

cout << "Hello, world!";

return 0;

}

Reply to this note

Please Login to reply.

Discussion

are you supposed to return EXIT_SUCCESS in C++ too? or only C

It's been about a decade since I actually used c++ but I don't think so or at least not with this basic print function lol. And I remember c even less than c++ lol

You should not return ANYTHING, 9plan knew this by making the main function a void type