What is static modifier?
No Answer is Posted For this Question
Be the First to Post Answer
program for insertion ,deletion,sorting in double link list
In c++ there is only virtual destructors, no constructors. Why?
What do you mean by stack program? Get me an example stack program?
In which Scenario you will go for Interface or Abstract Class?
1 Answers InfoAxon Technologies,
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
Base class has two public data members. How can i derive a new class with one datamember as public and another data member as private?.
Can we define a class within the interface?
What is conditional Compilation?
What is the important feature of inheritance?
Can destructor be overloaded?
What is the main feature of oop?
When is a memory allocated to a class?