News

If you run this program output will be 0 not 1. Because the operator used is post increment operator. According to definition of Post-Increment operator, first, value of the variable is used and then ...
**Increment Operators:** The increment operator is used to increment the value of a variable in an expression. In the Pre-Increment, value is first incremented and then used inside the expression.