Computer Science, asked by sv4902330, 10 months ago

a = 20 ,b= 15,c= 30
int r= ( ++a + --b) /c​

Answers

Answered by anindyaadhikari13
2

Answer:-

Given,

a=20

b=15

c=30

r=(++a+--b)/c

=(21+14)/30

=35/30

=1(integer division)

Hence, the value of r is 1.

Similar questions