Computer Science, asked by rekhajigna01, 7 months ago

If x= 10 then find the value of x+
= x++*x++

Answers

Answered by Sumit1010
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 AnindaBasu
1

Answer:

Value of x will be 110 will be the result

Similar questions
Math, 11 months ago