fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a=10;
  6. if(a==a--)
  7. printf ("True 1");
  8. a=10;
  9. if(a== --a)
  10. printf ("true2");
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5424KB
stdin
Standard input is empty
stdout
true2