What is polymorphism explain?
No Answer is Posted For this Question
Be the First to Post Answer
Why polymorphism is used in oops?
What is polymorphism in oops with example?
What is a macro? And how is a macro same as a template?
How to overload postfix operator in c++
When is an object created and what is its lifetime?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }
why constructor cannt be declar virtually? why destructor cannt be overloaded?
What Is a Polymorphism? How many types of polymorphism and whats that use in application?
What is a friend function & its advantage?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
When is a memory allocated to a class?
write a function that takes an integer array as an input and finds the largest number in the array. You can not sort array or use any API or searching needs?
2 Answers IBMS, Zycus Infotech,