Here is a simple code to evaulate an arithmetic expression :

a=(++a)+(++a)+(a++)+(a++) where a is an integer . Taking an initial value of a=10,we have,

a= (++10)+(++a)+(a++)+(a++)
=...