Computer Science, asked by gayatrikadam2000gk, 6 months ago

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 anindyaadhikari13
1

Answer:-

Given,

a=1,b=2 and c=3

a++ + --b

=1+1

=2

Now,

a=2

So,

a++ + --b=2

a=2

b=1

c=3.

These are the final values after execution.

Similar questions