Home » C++ Programming » Operators » Question
  1. Pick out the correct statement
    1. post-increment is faster than Pre Increment
    2. Pre Increment is faster than post-increment
    3. pre increment is slower than post-increment
    4. All of above
    5. None of these
Correct Option: B

Because Pre Increment take one-byte instruction & post increment takes two-byte instruction.



Your comments will be displayed only after manual approval.