From e1f7cf569b6ce9c58f1a5af92880d08bb296e408 Mon Sep 17 00:00:00 2001 From: Abdalkader Date: Thu, 19 Sep 2019 17:02:25 +0300 Subject: [PATCH] week1 assignments --- hello.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..d783c35 --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include + +int main(void) +{ + printf("Hello\n"); +}