Does std endl flush?
What are vectors used for in c++?
What is virtual destructor? What is its use?
What is c++ code?
When does a 'this' pointer get created?
What is the full name of logo?
What do you mean by translation unit?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
What gives the current position of the put pointer?
Explain abstraction.
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
What would happen on forgetting [], while deallocating an array through new?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
Is c++ built on c?
What are smart pointers?