From 36d08c2d2f11611124b25fe2705cb4a127740697 Mon Sep 17 00:00:00 2001 From: bot50 Date: Tue, 20 Feb 2024 19:56:36 +0000 Subject: [PATCH] kukemuna-cs50/problems/2024/x/me@20240220T195636.724275992Z --- 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); +}