hello world example / 2025 examples

This commit is contained in:
Mert Gör 🇹🇷 2025-03-18 13:58:35 +03:00
parent 6de7b78d91
commit 9ff74b5bf4
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F

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

@ -0,0 +1,8 @@
#include <stdio.h>
int main()
{
printf("Hello C Programming Language 2025 Examples");
return 0;
}