example hello world code

This commit is contained in:
Mert Gör
2024-08-10 14:14:34 +03:00
parent f7e77d3a18
commit 0e712cc48b
2 changed files with 8 additions and 0 deletions

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;
}