prog.c 68 B

1234567
  1. extern void print(void);
  2. int main(void)
  3. {
  4. print();
  5. return 0;
  6. }