pr22001-1b.c 145 B

12345678910111213
  1. #include <stdio.h>
  2. extern int copy;
  3. extern int get_copy (void);
  4. int
  5. main ()
  6. {
  7. if (copy == get_copy ())
  8. printf ("PASS\n");
  9. return 0;
  10. }