fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int num1 = 2;
  6. num1 = num1++ + ++num1;
  7. printf("%d\n", num1);
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 4528KB
stdin
Standard input is empty
stdout
6