17. Assume the given declarations and fill in the value of the expression. int a = 1, b = 2, c = 3;
Expression: a+++ --b
Answers
Answered by
0
Explanation:
a = 1
b = 2
=(a++)+(--b)
=(2++)+(--2)
=2+1
=3
Similar questions