Problem helloworld
User lykieutrang
Submission Time 2025-04-25 13:37:30
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp:3:5: error: cannot declare ‘::main’ to be a global variable
3 | int main {
| ^~~~
helloworld.cpp:4:26: error: expected primary-expression before ‘;’ token
4 | cout << 'Hello World' <<;
| ^
helloworld.cpp:4:26: error: expected ‘}’ before ‘;’ token
helloworld.cpp:3:10: note: to match this ‘{’
3 | int main {
| ^
helloworld.cpp:5:2: error: expected unqualified-id before ‘return’
5 | return 0;
| ^~~~~~
helloworld.cpp:6:1: error: expected declaration before ‘}’ token
6 | }
| ^