summaryrefslogtreecommitdiff
path: root/src/c/hello-c/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/hello-c/hello.c')
-rw-r--r--src/c/hello-c/hello.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/c/hello-c/hello.c b/src/c/hello-c/hello.c
index c63efdb..4aff095 100644
--- a/src/c/hello-c/hello.c
+++ b/src/c/hello-c/hello.c
@@ -1,6 +1,9 @@
#include <stdio.h>
+int
main()
{
printf("Hello C\n");
+
+ return 0;
}