What is constructor overloading in 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
function overridind means and simple program
what is use to destroy an object? illustrate.
when to use 'mutable' keyword and when to use 'const cast' in c++
Write pseudo code for push in a stack?
what is abstract class ? when is used in real time ? give a exp
what is namespace? what are the uses of namespace?
difference between structure and union.
Why we are use # in begning of programme of c++.
What is the difference between static polymorphism and dynamic polymorphism?
What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass
Program to check whether a word is in all capital letters