fork download
  1. int main() {
  2. int i = 1;
  3. printf("Hello world %d, %d\n", ++i, i++);
  4. return 0;
  5. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
Hello world 3, 1