foo example
This commit is contained in:
parent
b8f22cf5bd
commit
f202be858b
1 changed files with 14 additions and 0 deletions
14
c-basic/foo.c
Normal file
14
c-basic/foo.c
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int foo()
|
||||
{
|
||||
printf("I am foo\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
foo();
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Reference in a new issue