order_main.c 71 B

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