Problem helloworld
User mrbeast
Submission Time 2024-01-06 22:06:56
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp: In function ‘int main()’:
helloworld.cpp:2:2: error: ‘printf’ was not declared in this scope
2 | printf("Hello World");
| ^~~~~~
helloworld.cpp:1:1: note: ‘printf’ is defined in header ‘<cstdio>’; did you forget to ‘#include <cstdio>’?
+++ |+#include <cstdio>
1 | int main(){