fork download
  1. #include<stdio.h>
  2. #include<math.h>
  3. int main()
  4. {
  5. int i,j;
  6. i=3;
  7. j=i++;
  8. printf("%d\n",i,j);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5504KB
stdin

stdout
4