Computer Science, asked by ritika70809, 11 days ago

int i = 11 find i = i +++++ i * i - -​

Answers

Answered by ramk710
1

Answer:

Answer : 24

Initially, i=11,

i = i++ + ++i

i = (i is used before increment) + (i is used after increment)

i = 11(i=12) + 13(i=13)

i = 11 + 13 = 24

Answered by rajat2181
1

i = 11

i = i++ + ++i*i--

i = 11 + 13*13

i = 11 + 169

i = 180

Similar questions