hello.c 97 B

12345678910
  1. #include <stdio.h>
  2. /*
  3. * hello.c
  4. */
  5. int main(void) {
  6. printf("Hello World!\n");
  7. return 0;
  8. }