What do you mean by variable?
What is the difference between Home and $Home?
What are the 3 principles of oop?
What is pure oop?
c++ is a pure object oriented programming or not?
What is an orthogonal base class?
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 abstract class ? when is used in real time ? give a exp
What are the advantanges of modularity
What is the purpose of enum?
WHAT IS THE DIFFERENCE BETWEEN ABSTRUCTION AND ENCAPSULATION? PLEASE EXPLAIN IT.
what is the difference between ERROR and EXCEPTION?
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)