From baf907b17da8719a3da3badc822704b9ff562550 Mon Sep 17 00:00:00 2001 From: Ibrahim Ayad Date: Fri, 20 Sep 2019 12:31:44 +0300 Subject: [PATCH] Week1-assignment-Hello --- hello.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..d27b7e6 --- /dev/null +++ b/hello.c @@ -0,0 +1,9 @@ +#include +#include + +int main(void) +{ + string name = get_string("What is your name?\n"); //Enter name + printf("hello, %s\n", name); //print Hello word + return 0; +}