hello world example & ChangeLog update

This commit is contained in:
Mert Gör 🇹🇷 2024-06-30 15:02:33 +03:00
parent 426b371dbb
commit 830d22fa97
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2024-06-30 hwpplayer1 <hwpplayer1@debian>
* c-basic/helloworld.c: hello world example
2024-02-19 Mert Gör <mertgor@masscollabs.xyz>
* c-basic/C.pdf: Fonksiyonların Parametre Değişkenleri sayfa 27'deyiz

6
c-basic/helloworld.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(){
printf("hello world in C Programming Language\n");
return 0;
}