Skip to content

Commit a164a06

Browse files
Hello World Program
Program to Print Hello world in C
1 parent 6be80a8 commit a164a06

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Hello world Program

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include <stdio.h>
2+
int main() {
3+
// printf() displays the string inside quotation
4+
printf("Hello, World!");
5+
return 0;
6+
}
7+
8+
Output
9+
Hello, World!

0 commit comments

Comments
 (0)