Science, asked by kennykipa427, 5 hours ago

int a= 10, b = 5, c; c=++a* ++b; cout<

Answers

Answered by harisankarlal01
0

Answer:

66

Explanation:

++a means write the value of a after incrementing it by 1

So, the new value of a will now be 10+1 = 11

Same way, ++b means write the value of b after incrementing it by 1

So, the new value of b will now be 5+1 = 6

Then, you will get the output as 11*6 = 66

Similar questions