#include <stdio.h> int main(void) { int x = 5; int y = x++ + ++x + x++; printf("%d %d", x, y); return 0;}
1
8 19
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!