Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.
No Answer is Posted For this Question
Be the First to Post Answer
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
What are the types of container classes?
What is conversion constructor?
Can inline functions have a recursion? Give the reason?
i have given a project to create examination seating plan system in c++. so can anyone send me the answer of this question quickly??????
What is c++ runtime?
Why the usage of pointers in C++ is not recommended ?
What is the best way to declare and define global variables?
class Alpha { public: char data[10000]; Alpha(); ~Alpha(); }; class Beta { public: Beta() { n = 0; } void FillData(Alpha a); private: int n; }; How do you make the above sample code more efficient? a) If possible, make the constructor for Beta private to reduce the overhead of public constructors. b) Change the return type in FillData to int to negate the implicit return conversion from "int" to "void". c) Make the destructor for Alpha virtual. d) Make the constructor for Alpha virtual. e) Pass a const reference to Alpha in FillData
Does a derived class inherit or doesn't inherit?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
How many pointers are required to reverse a link list?