diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..7c51141 --- /dev/null +++ b/hello.c @@ -0,0 +1,9 @@ +#include +#include + +int main(void) +{ + //taking input from the user and save it into "string" variable. + string name = get_string("What's your name?\n"); + printf("Hello, %s\n", name); +}