This commit is contained in:
Mert Gör 🇹🇷 2024-10-29 10:05:48 +03:00
parent ca1b5e05cf
commit 6ee66a201b
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2024-10-29 Mert Gör <mertgor@masscollabs.xyz>
* c-basic/hello.c (main): Hello World Example which is forgotten at start
* c-basic/hex.c: Experımental Branch page 21
#include <stdio.h>

7
c-basic/hello.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("Hell C World \n");
return 0;
}