From a07b35c91e4d7b4cc2bfeea303ef63e2b9407050 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Fri, 10 Jan 2025 15:34:40 +0300 Subject: [PATCH] hello on GNU/Linux --- c-basic/hello.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 c-basic/hello.c diff --git a/c-basic/hello.c b/c-basic/hello.c new file mode 100644 index 0000000..bb8dc10 --- /dev/null +++ b/c-basic/hello.c @@ -0,0 +1,8 @@ +#include + +int main() +{ + printf("Hello World !\n"); + + return 0; +}