main.c 85 B

12345678910
  1. extern int b();
  2. extern int c();
  3. extern int d();
  4. int main()
  5. {
  6. c();
  7. b();
  8. d();
  9. }