From 926b17ca96b441b66c47c752b02ac4bd9236f3e2 Mon Sep 17 00:00:00 2001 From: "yoshihito.saito" Date: Wed, 1 Jul 2026 15:25:49 +0900 Subject: [PATCH] created C code to print 'hello world' on console --- hello.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..73b0c46 --- /dev/null +++ b/hello.c @@ -0,0 +1,5 @@ +#include + +int main(void) { + printf("hello, world!\n"); +} \ No newline at end of file -- 2.22.0