vers19.c 105 B

12345678910
  1. #include <stdio.h>
  2. extern int show_foo ();
  3. int
  4. main ()
  5. {
  6. printf ("%d\n", show_foo ());
  7. return 0;
  8. }