Answer Posted / anu
object oriented programming system
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Can you inherit a private class?
Why oops is important?
#include
Whats oop mean?
Templates mean
What is cohesion in oop?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
What are functions in oop?
What does oop mean in snapchat?
Is react oop?
What is the difference between static polymorphism and dynamic polymorphism?
What does it mean when someone says I oop?
How to hide the base class functionality in Inheritance?
What is a class oop?
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