From 5fa96f6c56d727665a057d235e4e80c011a5f96e Mon Sep 17 00:00:00 2001 From: haleilk Date: Sat, 27 Oct 2018 19:03:41 +0300 Subject: [PATCH] hw-in-c --- hello_world/hw-in-c.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello_world/hw-in-c.c diff --git a/hello_world/hw-in-c.c b/hello_world/hw-in-c.c new file mode 100644 index 0000000..3b7617c --- /dev/null +++ b/hello_world/hw-in-c.c @@ -0,0 +1,6 @@ +#include +int main() +{ + printf("Hello, World!"); + return 0; +}