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