hello.c 102 B

12345678
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(void)
  4. {
  5. printf("hello world\n");
  6. exit(42);
  7. }