computer question d= ++a / --b * a-- ; if a=15 ,b=17 ,find d
Answers
Answered by
0
the answer will be 15 and it is post decremented so it should be 14.
a=15, b=17
16/16*15--=1*15--=15-- >14
Similar questions