Computer Science, asked by dishansh746, 6 months ago

c=a+b+a++ +b++ + ++a+ ++b​

Answers

Answered by CheenaChauhan
0

Answer:

what r the values of a nd b?

Answered by sanjeevbansal4080
0

Answer:

It's parsed as c = a++ + b, and a++ means post-increment, i.e. increment after taking the value of a to compute a + b == 2 + 5.

Similar questions