Skip to content

Instantly share code, notes, and snippets.

@iamsurya
Created February 26, 2017 11:53
Show Gist options
  • Save iamsurya/f9f6fcca7f8b4b5b4a03ce29c86310f7 to your computer and use it in GitHub Desktop.
Save iamsurya/f9f6fcca7f8b4b5b4a03ce29c86310f7 to your computer and use it in GitHub Desktop.
/* Author Sonik Sharma 26/2/2017
Hello World program
*/
/* Include files */
#include<iostream> /* includes cout cin */
#include<conio.h> /* conio = console io. includes getch = get character from keyboard */
/* My hello world program */
int main()
{
cout<<"Hello World"; /* Print Hello World on screen */
getch(); /* Wait for keyboard press */
return 0; /* End program */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment