hello.c 136 B

12345678910
  1. /* Print hello to stdout ;-) */
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. int main(void) {
  5. puts("hello");
  6. return EXIT_SUCCESS;
  7. }