Answer Posted / ramakrishna yechuri
object is an instanc of a class.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is constructor in oop?
What is interface in oop?
What is abstraction in oops with example?
What is abstraction example?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What are the features of oop?
What is difference between pop and oop?
What is inheritance write a program to show use of inheritance?
Where You Can Use Interface in your Project
What is interface? When and where is it used?
Can you inherit a private class?
What do you mean by abstraction?
Whats is abstraction in oops?
Why is oop useful?
Why do we use polymorphism?