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