Foo example

This commit is contained in:
Mert Gör
2024-06-30 15:06:03 +03:00
parent 830d22fa97
commit 81e4765792
2 changed files with 12 additions and 0 deletions

10
c-basic/foo.c Normal file
View File

@ -0,0 +1,10 @@
#include <stdio.h>
int foo(){
printf("I am foo\n");
}
int main(){
foo();
return 0;
}