From f9b0874963115a35f0489099a936b5aec801c287 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandru=20Tof=C4=83nel?= Date: Fri, 27 Mar 2026 21:27:06 +0200 Subject: [PATCH] =?UTF-8?q?Hello=20world=20=C3=AEn=20C.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- c/HelloWorld.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 c/HelloWorld.c diff --git a/c/HelloWorld.c b/c/HelloWorld.c new file mode 100644 index 0000000..f26b97c --- /dev/null +++ b/c/HelloWorld.c @@ -0,0 +1,6 @@ +#include + +int main() { + printf("Hello, World!\n"); + return 0; +}