Skip to content

Commit

Permalink
helloworld.c
Browse files Browse the repository at this point in the history
  • Loading branch information
ambujraj authored Oct 16, 2017
1 parent 0df7e55 commit fdfde4a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions hello_world/helloworld.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Include the contents of stdio.h, a library with standard input and output functions such as printf().
#include <stdio.h>
#include <conio.h>
// Execution of the program begins with the main() function.
void main()
{
// printf() displays the string inside quotation
printf("Hello, World!");
getch();
}

0 comments on commit fdfde4a

Please sign in to comment.