From 0e712cc48bd6daf8ca56165abaecda669731cc87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Sat, 10 Aug 2024 14:14:34 +0300 Subject: [PATCH] example hello world code --- ChangeLog | 2 ++ c-basic/example.c | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 c-basic/example.c diff --git a/ChangeLog b/ChangeLog index 557cbcc..d530b1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2024-08-10 hwpplayer1 + * c-basic/example.c (main): example örnek kod yazıldı .c uzantılı dosya içine kod yerleştirildi + * c-basic/C.pdf: Dersler C Temel kursundan itibaren yeniden başlatıldı. 2024-07-26 hwpplayer1 diff --git a/c-basic/example.c b/c-basic/example.c new file mode 100644 index 0000000..fbfc1b6 --- /dev/null +++ b/c-basic/example.c @@ -0,0 +1,6 @@ +#include + +int main(){ + printf("example hello world\n"); + return 0; +}