Foo example

This commit is contained in:
Mert Gör 2024-06-30 15:06:03 +03:00
parent 830d22fa97
commit 81e4765792
No known key found for this signature in database
GPG key ID: 03E547D043AB6C8F
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;
}