This is my C code.
#include int main() { int a=5,c; c=++a + ++a + --a; printf("%d ",c); return 0; }
From