What is polymorphism in c++? Explain with an example?
Is there a new/delete equivalent of realloc?
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
Is c++ high level programming language?
What is setbase c++?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
Why do we use string in c++?
What are the different types of Storage classes?
What is object slicing and how can we prevent it?
Implement stack operations with pointers with appropriate exception checks.
What is Namespace?
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
What is ctime c++?