Problem helloworld
User kailaaaan08
Submission Time 2024-06-24 14:03:01
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp:2:14: error: stray ‘\’ in program
2 | cout << World\n";
| ^
helloworld.cpp:2:16: error: missing terminating " character
2 | cout << World\n";
| ^~
helloworld.cpp:1:1: error: ‘cout’ does not name a type
1 | cout << "Hello\n";
| ^~~~
helloworld.cpp:2:1: error: ‘cout’ does not name a type
2 | cout << World\n";
| ^~~~
helloworld.cpp:3:13: error: ‘cout’ does not name a type
3 | int a = 5; cout << a;
| ^~~~
helloworld.cpp:4:1: error: expected unqualified-id before ‘return’
4 | return 0;
| ^~~~~~