fork(2) download
  1. /* package whatever; // don't place package name! */
  2. #include <stdio.h>
  3.  
  4. int main ()
  5. {
  6. // your code goes here
  7. int i;
  8. printf("%d\n", ++i + ++i + i++);
  9. int j=0;
  10. printf("%d\n", ++j + ++j + j++);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
0
5