STL (140)
OOPS (873)
C++ General (2409)
What is the best c++ book?
What is object in c++ example?
What are the two types of comments?
What apps are written in c++?
If you don’t declare a return value, what type of return value is assumed?
What do you mean by volatile and mutable keywords used in c++?
What are the advantage of using register variables?
What is a constructor and how is it called?
Define type casting in C++.
Which is not an object oriented programming language?
What is token c++?
What is a literal in c++?
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
Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
Is c++ the hardest language?