Computer Science, asked by alivia07, 10 months ago

a=0&b=0

a=b ++ + b ++
a= ++b + ++b
a=b++ + ++b
a = ++ b + b ++


Fastest and correct will be marked brainliest.​

Attachments:

Answers

Answered by sswaraj04
1

Answer:

Explanation:

Post fix has higher precedence to prefix

post fix -> left to right

prefix-> right to left

i)

a=b++ + b++

 0   +   1  =1

ii)

a=++b + ++b

    2   +  1 = 3

iii)

a=b++ + ++b

     0   +   2 =2

iv)

a=++b + b++

     2   +    0=2  

Answered by alivia17
1

hi thanks for points.....

Similar questions