diff --git a/hello.c.txt b/hello.c.txt new file mode 100644 index 0000000..7889d19 --- /dev/null +++ b/hello.c.txt @@ -0,0 +1,8 @@ +#include +#include + +int main(void) +{ + string name = get_string("What Is Your Name?\n"); //get an input from the user for a name + printf("hello, %s\n", name); +}