diff options
Diffstat (limited to 'src/c/hello-c/hello.c')
-rw-r--r-- | src/c/hello-c/hello.c | 3 |
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; } |