foo example

This commit is contained in:
Mert Gör 🇹🇷 2024-08-10 14:53:41 +03:00
parent e3c1801a8f
commit fba2a8ebab
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 19 additions and 0 deletions

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

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

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

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