What is static in oop?
No Answer is Posted For this Question
Be the First to Post Answer
what type of questions
Why do pointers exist?
What is class and object with example?
What do you mean by overloading?
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
Why is there no multiple inheritance?
What is the fundamental idea of oop?
Is react oop?
What are the 3 principles of oop?
What is the benefit of oop?
What is abstraction in oops with example?
You have one base class virtual function how will call that function from derived class?