C
Programming and Technical
output?
Q. Why Preincrement operator is faster than Postincrement?
A. Evaluation of any expression is from left to right. Preincrement is faster because it doesn't need to save the current value for next instruction whereas Postincrement needs to saves current value to be incremented after execution of current instruction.
Read Solution (Total 0)
C Other Question