If x= 10 then find the value of x+
= x++*x++
Answers
Answered by
4
Answer:
x = 110
Explanation:
x+= (x++)*(x++); can also be written as:
x = x + ((x++)*(x++));
if x = 10, then
x++ = 10 (because ++ here is post incremental operator)
Value of x becomes :
x = 10 + (10*10)
x = 110
Answered by
1
Answer:
Value of x will be 110 will be the result
Similar questions