From 9ff74b5bf421026f9b8652b0e948aef9506a61dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Tue, 18 Mar 2025 13:58:35 +0300 Subject: [PATCH] hello world example / 2025 examples --- 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..ae55976 --- /dev/null +++ b/c-basic/hello.c @@ -0,0 +1,8 @@ +#include + +int main() +{ + printf("Hello C Programming Language 2025 Examples"); + + return 0; +}