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