Problem helloworld
User new2coding279
Submission Time 2024-01-22 18:22:50
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp:3:1: error: ‘printf’ does not name a type
3 | printf << "Hello World"f >>
| ^~~~~~
helloworld.cpp:2:1: note: ‘printf’ is defined in header ‘<cstdio>’; did you forget to ‘#include <cstdio>’?
1 | #include <iostream>
+++ |+#include <cstdio>
2 | using namespace std;