From 4a9885135f35df94e707cf4d853480c27ef92d7a Mon Sep 17 00:00:00 2001 From: amerihsan Date: Sat, 21 Sep 2019 20:07:41 +0300 Subject: [PATCH] add hello by amerihsan --- HELLO.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 HELLO.txt diff --git a/HELLO.txt b/HELLO.txt new file mode 100644 index 0000000..7914fbc --- /dev/null +++ b/HELLO.txt @@ -0,0 +1,8 @@ +#include +#include +int main(void) +{ +string name = get_string("What is your name\n");//ask you for your name + +printf("hello,%s\n", name); +}