InterviewSolution
Saved Bookmarks
| 1. |
Why N++ Executes Faster Than N+1? |
|
Answer» The EXPRESSION n++ requires a SINGLE MACHINE instruction such as INR to carry out the INCREMENT operation whereas n+1 requires more instructions to carry out this operation. The expression n++ requires a single machine instruction such as INR to carry out the increment operation whereas n+1 requires more instructions to carry out this operation. |
|