fork download
  1. #include <stdio.h>
  2.  
  3. int main(void){
  4. #if 1
  5. printf("hoge\n");
  6. #if 0
  7. printf("fuga\n");
  8. #endif
  9. printf("piyo\n");
  10. #endif
  11. }
Runtime error #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
hoge
piyo