From ddd7818b4a98238f58a3c824a404393ea660bc86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Wed, 24 Jan 2024 08:28:48 +0300 Subject: [PATCH] hello world example --- c-basic/helloworld.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 c-basic/helloworld.c diff --git a/c-basic/helloworld.c b/c-basic/helloworld.c new file mode 100644 index 0000000..3b47771 --- /dev/null +++ b/c-basic/helloworld.c @@ -0,0 +1,6 @@ +#include + +int main(){ + printf("Hello World\n"); + return 0; +} \ No newline at end of file