From 7e7141bb3cc00864e75899753abba0b71f482bce Mon Sep 17 00:00:00 2001 From: ahmedhekmat Date: Tue, 1 Oct 2019 20:14:30 +0300 Subject: [PATCH] hello by ahmed --- 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..ec2caf2 --- /dev/null +++ b/hello.c @@ -0,0 +1,9 @@ +#include +#include + + +int main(void) +{ +string name =get_string("whats is your name?\n"); + printf("hello, %s\n",name); +}