Question:What does a++ do?
A Increments a by 1 and returns the old value B Increments a by 1 and returns the new value C Decreases a by 1 D None
+ AnswerA
+ ExplanationThe ++ operator can be used as a postfix operator to return the original value before increment.
+ Report