How do you answer polymorphism?
No Answer is Posted For this Question
Be the First to Post Answer
• What are the desirable attributes for memory managment?
#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 abstraction in oop?
What is difference between inheritance and polymorphism?
Why do we use class in oops?
Get me an image implementation program.
WHAT IS THE DIFFERENCE BETWEEN OBJECT BASED & OBJECT ORIENTD PROGRAMMING LANGUAGE.(GIVE AT LIST 4 PIONT)
What are the advantages of inheritance?
26 Answers IBS, TCS,
what are the uses of C++
Program to open a file with First argument
Explain the concept of abstracion and encapsulation with one example. What is the difference between them?
Whats is abstraction in oops?