++a + ++b - C--; (where
a=5,b=6,c=7) output will be
*
Attachments:
Answers
Answered by
0
6 is the right answer
++a will give 6
++b will give 7
++a + ++b will give 13
++a + ++b - c-- will give 6 because the value of c that will be subtracted from ++a + ++b will be 7 only as it post decrement not pre decrement.
So,++a + ++b - c-- will give 6
Similar questions