From 8a7594f5af4adbfb61a694c310f802f3b2466c40 Mon Sep 17 00:00:00 2001 From: kukemuna Date: Tue, 20 Feb 2024 21:56:33 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- 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); +}