5. b++ is equivalent to
Answers
Answered by
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
5
Explanation:
a = b++
This is post-increment operation. First the value of b will be assigned to a and then incremented.
Similar questions