Raw File
main.c
extern int b();
extern int c();
extern int d();

int main()
{
   c();
   b();
   d();
}
back to top