STL (140)
OOPS (873)
C++ General (2409)
How can virtual functions in c++ be implemented?
Differentiate between late binding and early binding. What are the advantages of early binding?
Why is object oriented programming so hard?
How do I use turbo c++?
Can c++ do everything c can?
Should I learn c or c++ or c#?
Write a function that swaps the values of two integers, using int* as the argument type?
Which type does string inherit from?
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 is an operator function? Describe the function of an operator function?
How do you work around them?
What is the best way to take screenshots of a window with c++ in windows?
Can non graphic characters be used and processed in C++?
What is stl stand for?
What is atoi in c++?