If I write a code like(in c)
    x=1;
    z=2;
    y=x---z;
will first two - be treated as post-decrement and later one as subtraction
or first - will be treated as subtraction and other two as pre-decrement
and what if I put a space to make it the other (because in c program doesn't change by white space)
 
    