If a 0 b 30 c 40 then find the value of a when a b c b
If a = 0, b = 30, c = 40; then find the value of 'a' when:
a += --b + c++ + b;
43 Likes
a = 98
a = --b + c++ + b⇒ a = 29 + 40 + 29⇒ a = 98
Answered By
20 Likes