| Problem | helloworld |
|---|---|
| User | Magenta |
| Submission Time | 2026-06-22 16:06:40 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
helloworld.cpp: In function ‘int main()’:
helloworld.cpp:4:10: error: invalid conversion from ‘const char*’ to ‘int’ [-fpermissive]
4 | int h = "Hello World"
| ^~~~~~~~~~~~~
| |
| const char*
helloworld.cpp:5:2: error: expected ‘,’ or ‘;’ before ‘cin’
5 | cin >> h;
| ^~~
helloworld.cpp:6:11: error: expected ‘;’ at end of input
6 | cout << h
| ~^
| ;
helloworld.cpp:6:10: error: expected ‘}’ at end of input
6 | cout << h
| ^
helloworld.cpp:3:15: note: to match this ‘{’
3 | signed main() {
| ^