STL (140)
OOPS (873)
C++ General (2409) 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)
1 7137what are three tenets of object orinted Systems?Why they call like that ? Please answer me. Advance thanks.
2 4856class 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
2289WHAT IS THE DIFFERENCE BETWEEN OBJECT BASED & OBJECT ORIENTD PROGRAMMING LANGUAGE.(GIVE AT LIST 4 PIONT)
TCS,
1 6063How do you import payscale data from non SAP to SAP?is it through LSMW or any other way is there?
3649given the code segment below void main() { cout<<"my no. is"; } question is how can we get the output hai aravind my no. is 99999999999 without editig the main().
2 5609Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
2153#define CUBE(x) (x*x*x) main() { int a,b=3; a=cube(b++); printf("%d %d",a,b); } What should be the value of a and b? My calc a=4 but syst a=6 how pls tell me if you know it?
12 42960
Is c++ an oop?
What is a class in oop?
Is python written in c or c++?
How do you import payscale data from non SAP to SAP?is it through LSMW or any other way is there?
What are different oops concepts?
Why is object oriented programming so hard?
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
What is the difference between static polymorphism and dynamic polymorphism?
Is there any error below, its a code to delete all entires from a map #include
Write a C++ Program to check whether a number is prime number or not?
What are the benefits of interface?
Do the parentheses after the type name make a difference with new?
What is a syntax in c++?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
How do I write a c++ program?