hello on GNU/Linux

This commit is contained in:
Mert Gör 🇹🇷 2025-01-10 15:34:40 +03:00
parent 6a1a7fd7ba
commit a07b35c91e
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 World !\n");
return 0;
}