fork download
  1. #include<stdio.h>
  2.  
  3. int main(){
  4. int i=3;
  5. printf("%d %d",i++,++i);
  6. return 0;
  7. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
4 5