From 1ed3c6184b0166baa6af6d07e277a7d06123423b Mon Sep 17 00:00:00 2001 From: noorhanjenan2000164 Date: Fri, 20 Sep 2019 01:33:29 +0300 Subject: [PATCH] week1 assignment --- 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..2b0c510 --- /dev/null +++ b/hello.txt @@ -0,0 +1,8 @@ +#include +#include +int main(void) +{ + string name = get_string("what is your name ?\n"); //to say your name + printf("hello,%s\n", name); + printf("hello, world\n"); // say hello in code +}