Online Compiler C

#include<studio.h> int main(){ printf("hello world"); return 0; }
The code tries to print "hello world" using printf and then return 0 from main.

- Check the header name carefully: the standard input/output header is not spelled "studio.h".
- Make sure the include line uses the correct angle brackets and exact spelling so the compiler can find the declaration of printf.