From 448b57eefce506092394a197b016fa28d9839982 Mon Sep 17 00:00:00 2001 From: princes1993 Date: Fri, 20 Sep 2019 23:50:55 +0300 Subject: [PATCH] Week1-Hello by (SARA) --- hello.c.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello.c.txt diff --git a/hello.c.txt b/hello.c.txt new file mode 100644 index 0000000..7889d19 --- /dev/null +++ b/hello.c.txt @@ -0,0 +1,8 @@ +#include +#include + +int main(void) +{ + string name = get_string("What Is Your Name?\n"); //get an input from the user for a name + printf("hello, %s\n", name); +}