Evaluate :
[ from Operatores in C ]
( If a = 2 , b = 3 )
Q: a+++++a-b-----b
Please solve.! it's urgent.
Answers
Answered by
2
Answer:
a = 2
b =3
a++ = postfix : first write then increase
++a = prefix : first increase then write
same for b.
a++ = 2
++a = 3
b-- = 3
--b = 2
=> a++ + ++a - b-- - --b
=> 2 + 3 - 3 - 2
=> 0
Ram Ji Bhala Kare..
Similar questions