hello_puts.c 63 B

12345678
  1. #include <stdio.h>
  2. int main()
  3. {
  4. puts("test\n");
  5. return 0;
  6. }