diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..d27b7e6 --- /dev/null +++ b/hello.c @@ -0,0 +1,9 @@ +#include +#include + +int main(void) +{ + string name = get_string("What is your name?\n"); //Enter name + printf("hello, %s\n", name); //print Hello word + return 0; +}