From 2d8f60b2a1cea63c292310b59cf5f6ed2a5615c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dilek=20=C3=9Cz=C3=BClmez?= Date: Tue, 2 Oct 2018 18:01:48 +0300 Subject: [PATCH] Hello World in C --- hello_world/hello_world.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello_world/hello_world.c diff --git a/hello_world/hello_world.c b/hello_world/hello_world.c new file mode 100644 index 0000000..3b7617c --- /dev/null +++ b/hello_world/hello_world.c @@ -0,0 +1,6 @@ +#include +int main() +{ + printf("Hello, World!"); + return 0; +}