Practice Learning Problems for C89
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
103B

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(void){
  4. printf("Hello World\n");
  5. return EXIT_SUCCESS;
  6. }