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 a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
Can I uninstall microsoft c++ redistributable?
What is a friend function in c++?
What is a constructor and how is it called?
What is set in c++?
Is c++ built on c?
What do the header files usually contains?
What is atoi?
find the two largest values among the 6 numbers using control structures : do-while,for,if else,nestedif- else ,while. one or two of them.
Do the names of parameters have to agree in the prototype, definition, and call to the function?
What are the various arithmetic operators in c++?
Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?
What is the use of setprecision in c++?
Explain the auto storage classes in c++.
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num