0 0 votes Suppose a=1,b=2 then a+=++b; then value of a and b how can be determine? Programming in C + – Çșȇ ʛấẗẻ 559 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
Best answer 4 4 votes a = 1, b = 2. The following are equivalent. a+=++b; a = a + ++b a = a + (b = b+ 1) So, b = 3, a = 4. Arjun answered Dec 24, 2016 • selected Dec 25, 2016 by vijaycs Arjun comment Share Follow See 1 comment 1 1 comment reply Çșȇ ʛấẗẻ commented Dec 25, 2016 reply Follow flag thnks sir i got it now. 0 0 replyShare Please log in or register to add a comment.