example hello world code

This commit is contained in:
Mert Gör 🇹🇷 2024-08-10 14:14:34 +03:00
parent f7e77d3a18
commit 0e712cc48b
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2024-08-10 hwpplayer1 <hwpplayer1@debian>
* 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 <hwpplayer1@debian>

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

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