fork download
  1. #include <stdio.h>//第0講練習い
  2.  
  3. void pr_hl_wld(){
  4. printf("Hello,\n");
  5. printf("World!\n");
  6. }
  7. int main(void) {
  8. pr_hl_wld();
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
Hello,
World!