How does c++ sort work?
Write is a binary search tree? Write an algo and tell complexity?
What is c++ best used for?
How a new element can be added or pushed in a stack?
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
What is the use of this pointer in c++?
We use library functions in the program, in what form they are provided to the program?
Discussion on error handling of C++ .
What is fixed in c++?
What are structures and unions?
How do you invoke a base member function from a derived class in which you have not overridden that function?
What is the difference between interpreters and compilers?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
What are the differences between new and malloc?
Incase of a function declaration, what is extern means?