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
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
1
hi thanks for points.....
Similar questions