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