Answer Posted / p.madhupriya
pointer is a variable that points to address of another variable
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is oops and its features?
What is polymorphism and its types?
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
Is this job good for future? can do this job post grduate student?
Why do we use oops?
officer say me - i am offered to a smoking , then what can you say
to find out the minimum of two integer number of two different classes using friend function
Can we override main method?
How can you overcome the diamond problem in inheritance?
What do you mean by variable?
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
Why is polymorphism needed?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
write a programe to calculate the simple intrest and compund intrest using by function overlading