Foo example
This commit is contained in:
10
c-basic/foo.c
Normal file
10
c-basic/foo.c
Normal file
@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int foo(){
|
||||
printf("I am foo\n");
|
||||
}
|
||||
|
||||
int main(){
|
||||
foo();
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user