Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Last active July 17, 2017 13:08
Show Gist options
  • Save ThePratikSah/2e2e3d4d2bb890561511978d59291822 to your computer and use it in GitHub Desktop.
Save ThePratikSah/2e2e3d4d2bb890561511978d59291822 to your computer and use it in GitHub Desktop.
// Demo of a simple C program.
/*
Author: Pratik Sah
Date: 29-03-17
*/
#include <stdio.h>
main() {
printf("Hello World!\n");
//here \n is used for creating a new line.
//the execution starts from main()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment