From 682ac6a2f42670bbee185f83daa17621df3baa7c Mon Sep 17 00:00:00 2001 From: Saadmohammeed Date: Thu, 19 Sep 2019 17:11:53 +0300 Subject: [PATCH] week1 assignment hello --- hello (1).c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello (1).c diff --git a/hello (1).c b/hello (1).c new file mode 100644 index 0000000..0cd077c --- /dev/null +++ b/hello (1).c @@ -0,0 +1,8 @@ +#include +#include +int main(void) +{ + printf("hello, world\n"); + string name = get_string("What is your name?\n"); + printf("hello, %s\n", name); +}