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

stdout
i
=℅d j
=℅d