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 +}