Computer Science, asked by arun2528, 4 months ago

a+= a++ - --a + a++ - a--
[when a = 10]​

Answers

Answered by riddhilahiri04
0

Answer:

keep the LHS intact

a=10

a+=a++ - --a + a++ - a--

put a=10 in RHS

a+= 10  - 10 + 10 - 11 (operators working, so value changes)

a+= -1

a=a+(-1)

now put a=10 in RHS

a=10-1

a=9

please check the answer if it matches, if it is wrong report my answer,

and if i am correct, please mark as brainliest!!

Similar questions