hello world example

This commit is contained in:
Mert Gör 🇹🇷 2024-01-24 08:28:48 +03:00
parent 7a65bfaf26
commit ddd7818b4a
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F

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

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