foo example

This commit is contained in:
Mert Gör 🇹🇷 2025-03-18 14:06:43 +03:00
parent b8f22cf5bd
commit f202be858b
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F

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

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