Computer Science, asked by ishwaryakamble2931, 5 months ago

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 Imblank
0

Explanation:

a = 1

b = 2

=(a++)+(--b)

=(2++)+(--2)

=2+1

=3

Similar questions