fork download
  1. #include <stdio.h>
  2.  
  3. void main() {
  4. int result = 120;
  5. printf("%d %d %d",result,result++,++result);
  6. }
Runtime error #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
122 121 122