Skip to content

Commit d0971c4

Browse files
committed
add hello world source
add C code for 'hello world' Signed-off-by: Inho Oh <webispy@gmail.com>
1 parent dbffc5e commit d0971c4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

hello.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include <stdio.h>
2+
3+
int main(int argc, char *argv[])
4+
{
5+
printf("hello world\n");
6+
7+
return 0;
8+
}

0 commit comments

Comments
 (0)