#include <stdio.h> int main(void) { int i = 0; int j = 0 + ++i + i++; printf("i=%d, j=%d", i, j); return 0;}
Standard input is empty
i=2, j=3
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!