Computer Science, asked by ramnanikhushi4, 2 months ago

5. b++ is equivalent to​

Answers

Answered by kamalrajatjoshi94
1

Answer:

b++=b+1

Note:It is also called post-increment as in this the execution is done after the action.The value is first assigned then incremented.

Answered by shrutisru
5

Explanation:

a = b++

This is post-increment operation. First the value of b will be assigned to a and then incremented.

Similar questions