What is pure virtual function?
No Answer is Posted For this Question
Be the First to Post Answer
When you overload member functions, in what ways must they differ?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
What is atoi?
What is insertion sorting?
What is problem with Runtime type identification?
Explain the static storage classes in c++.
How do you find out if a linked-list has an end?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Incase of a function declaration, what is extern means?
What is the meaning of c++?
What is code reusability in c++?
What is an incomplete type in c++?