test1.c 84 B

123456
  1. void my_print(char *);
  2. int main()
  3. {
  4. my_print("Hello, world!\n");
  5. return 0;
  6. }