commit 96f889fd80b8f40ab5cd33ddcef941f49b27ff5c Author: bot50 Date: Tue Feb 20 19:57:54 2024 +0000 kukemuna-cs50/problems/2024/x/me@20240220T195754.524928880Z diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..591dd57 --- /dev/null +++ b/hello.c @@ -0,0 +1,8 @@ +#include +#include + +int main(void) +{ + string name = get_string("What's your name? "); + printf("hello, %s\n", name); +}