fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int t = 3;
  5. int p = -5;
  6. int q = 1;
  7. int m = (q * p + (t * t) - (t + q)) - 2;
  8. int n = (q * p + (t * ++t) - (t + q)) - 2;
  9. t = 3;
  10. int o = (q * p + (t * t++) - (t + q)) - 2;
  11. printf("%d, %d, %d", m, n, o);
  12. }
  13.  
  14. //https://pt.stackoverflow.com/q/334458/101
  15.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
-2, 4, 0