Why preincrement operator is faster than postincrement?
Answer Posted / devesh patel
b/c preeincrement take one byte instruction & post
increment takes two instruction
| Is This Answer Correct ? | 16 Yes | 7 No |
Post New Answer View All Answers
What is difference between rand () and srand ()?
Why is swift so fast?
What is a multiset c++?
Is c++ faster than c?
What do you mean by enumerated data type?
What are files in c++?
What is the function of I/O library in C++ ?
What are friend classes?
What are the classes in c++?
What is c++ namespace?
When is the destructor called?
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
What are containers in c++?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)