9 lines
71 B
C
9 lines
71 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int foo()
|
||
|
{
|
||
|
printf("I am foo\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|