Vidyalelo
C Programming · Q53

Operators and Expressions

Programming · C Programming · question 53

Q53

Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5?

A.
450
B.
10
Answer
C.
110
D.
-10
E.
-110

Answer: Option B

Solution

Answer: Option B
Solution:

As the expression is evaluated from right to left.