--- In [email protected], "mohaghghy" <[EMAIL PROTECTED]> wrote: > > --- In [email protected], "malaram kumhar" <malaram_engg@> wrote: > > > > How does this expression could be solve and what is the value of a and > > b? > > int a=13; > > b=++a + ++a; > > > 30 > 1 ++ & ++ -> a = 15 > 2 + > 3 a + a -> 15 + 15 > 4 b = 30 >
a=15 b=28
