From 7e3ba5f0b2a57ec5ebde32487f0e7230ae90de5f Mon Sep 17 00:00:00 2001 From: Fabio Durastante Date: Thu, 30 Oct 2025 16:16:13 +0000 Subject: [PATCH] Il nostro programma C di ciao mondo --- hello_world.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello_world.c diff --git a/hello_world.c b/hello_world.c new file mode 100644 index 0000000..878686d --- /dev/null +++ b/hello_world.c @@ -0,0 +1,5 @@ +#include + +int main(){ +printf("Hello, world!\n"); +}