diff --git a/hello_world.c b/hello_world.c new file mode 100644 index 0000000..944dc9e --- /dev/null +++ b/hello_world.c @@ -0,0 +1,15 @@ +// Simple C program to display "Hello World" + +// Header file for input output functions +#include + +// main function - +// where the execution of program begins +int main() +{ + + // prints hello world + printf("Hello World"); + + return 0; +}