Re: C Programming Problem
Well, If I'm not wrong then the answer would be
c = (a++) + (++b)
c = 5 + 8
c = 13
And after the operation a = 6, b = 8, c = 13.
a++ = Post Increment, so the value is increased after the operation performed.
++b = Pre Increment, so the value is incremented before the operation is performed.