InterviewSolution
Saved Bookmarks
| 1. |
Difference between increment operator or decrement operator |
| Answer» NT and decrement operators are unary operators that ADD or subtract one, to or from their operand, respectively. They are commonly implemented in imperative PROGRAMMING LANGUAGES. ... The increment operator increases, and the decrement operator decreases, the value of its operand by 1. | |