Explain polymorphism?
No Answer is Posted For this Question
Be the First to Post Answer
What is an adjust field format flag?
What are the restrictions apply to constructors and destructors?
Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.
When do we run a shell in the unix system?
Explain explicit container.
Explain what data encapsulation is in c++?
What are the extraction and insertion operators in c++?
What operators can you overload in c++?
Using a smart pointer can we iterate through a container?
Explain calling an object's member function(declared virtual)from its constructor?
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;