2025-03-18 14:06:43 +03:00

15 lines
108 B
C

#include <stdio.h>
int foo()
{
printf("I am foo\n");
return 0;
}
int main()
{
foo();
return 0;
}