Saved Bookmarks
| 1. |
Differenciate between prefix and postfix increment operators |
|
Answer» ong>ANSWER: Postfix increment operator means the expression is evaluated FIRST using the ORIGINAL value of the variable and then the variable is incremented(increased). ... Prefix decrement operator means the variable is DECREMENTED first and then the expression is evaluated using the new value of the variable |
|