fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(int argc, char** argv){
  4. printf("123\n456\n789\n");
  5. printf("シングルクオーテーション:\'ダブルクオーテーション:\"\n");
  6. return 0;
  7. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
123
456
789
シングルクオーテーション:'ダブルクオーテーション:"