#include // inclding a predefined file stdio i.e. standard input output int main()//the main function { printf("Hello World");// printing return 0;// returning 0 to avoid this we can use void instead of int }