STL (140)
OOPS (873)
C++ General (2409) What is a tuple c++?
What is the advantage of c++ over c?
Differentiate between the manipulator and setf( ) function?
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
How can we access protected and private members of a class?
What is pointer -to-members in C++? Give their syntax?
Can notepad ++ run c++?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
How do you differentiate between overloading the prefix and postfix increments?
How compile and run c++ program in turbo c++?
What is persistence 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
C is to C++ as 1 is to a) What the heck b) 2 c) 10
Is c++ free?
What is a base class?