vers3.c 143 B

12345678910111213
  1. /*
  2. * Main program for test1, test2.
  3. */
  4. #include <stdio.h>
  5. extern int show_foo ();
  6. int
  7. main()
  8. {
  9. printf("%d\n", show_foo());
  10. return 0;
  11. }