// Simple C program to display "Hello World" // Header file for input output functions #include int main() { printf("Hello world\n"); return 0; }