From 96f889fd80b8f40ab5cd33ddcef941f49b27ff5c Mon Sep 17 00:00:00 2001 From: bot50 Date: Tue, 20 Feb 2024 19:57:54 +0000 Subject: [PATCH] kukemuna-cs50/problems/2024/x/me@20240220T195754.524928880Z --- hello.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello.c 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); +}