adspace
Answer Posted / Himanshu Saxena
In C++, the increment operator is denoted by ++. It increases the value of a variable by 1. There are two forms of increment operator: pre-increment (++variable) and post-increment (variable++). Pre-increment increments the variable before it is used in an expression, while post-increment increments the variable after it is used.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers