What is polymorphism what is it for and how is it used?
No Answer is Posted For this Question
Be the First to Post Answer
#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; }
what is data abstraction with example.
What are the 3 pillars of oop?
some one give d clear explanation for polymorphism
what is abstract class ? when is used in real time ? give a exp
How do you use inheritance in unity?
What is a mixin class?
What is encapsulation with example?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
What is multiple inheritance ?
17 Answers Blue Star, C DAC, CDAC, Impetus, Ness Technologies, Softvision Solution,
Can you name some types of inheritance?
What is memory leak and memory corruption?