From f50d2d2707ceeb99f33422ca25745dddf52d8ffb Mon Sep 17 00:00:00 2001 From: alihazim Date: Fri, 20 Sep 2019 12:15:48 +0300 Subject: [PATCH] added hello --- hello.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..8b2eafb --- /dev/null +++ b/hello.c @@ -0,0 +1,8 @@ +#include +#include +int main(void) +{ + string name = get_string("what is your name?\n"); + + printf("hello, %s \n", name); +}