From 830d22fa97a902ebe41949b471a475b8c1480661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Sun, 30 Jun 2024 15:02:33 +0300 Subject: [PATCH] hello world example & ChangeLog update --- ChangeLog | 4 ++++ c-basic/helloworld.c | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 c-basic/helloworld.c diff --git a/ChangeLog b/ChangeLog index e512ce0..e6b4174 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2024-06-30 hwpplayer1 + + * c-basic/helloworld.c: hello world example + 2024-02-19 Mert Gör * c-basic/C.pdf: Fonksiyonların Parametre Değişkenleri sayfa 27'deyiz diff --git a/c-basic/helloworld.c b/c-basic/helloworld.c new file mode 100644 index 0000000..e30fd85 --- /dev/null +++ b/c-basic/helloworld.c @@ -0,0 +1,6 @@ +#include + +int main(){ + printf("hello world in C Programming Language\n"); + return 0; +} \ No newline at end of file