From 6ee66a201be80c5cd568aed35a02d173bd4baf2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Tue, 29 Oct 2024 10:05:48 +0300 Subject: [PATCH] hello --- ChangeLog | 2 ++ c-basic/hello.c | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 c-basic/hello.c diff --git a/ChangeLog b/ChangeLog index 72ac561..ab658c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2024-10-29 Mert Gör + * c-basic/hello.c (main): Hello World Example which is forgotten at start + * c-basic/hex.c: Experımental Branch page 21 #include diff --git a/c-basic/hello.c b/c-basic/hello.c new file mode 100644 index 0000000..c70bb69 --- /dev/null +++ b/c-basic/hello.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + printf("Hell C World \n"); + return 0; +}