What are postfix operators in C++?
Answers
Answered by
0
Postfix operators are unary operators that work on a single variable which can be used to increment or decrement a value by 1. There are 2 postfix operators in C++, ++ and --.
Similar questions