Answer Posted / abhijeet sinha
Classes
objects
Encapsulation
Inheritance
Polymorphism
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
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
What is the importance of oop?
What are objects in oop?
Why do we use class in oops?
What is difference between data abstraction and encapsulation?
Write a program to sort the number with different sorts in one program ??
Templates mean
What are the benefits of interface?
when to use 'mutable' keyword and when to use 'const cast' in c++
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
What are classes oop?
Can enum be null?
hi all..i want to know oops concepts clearly can any1 explain??
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
write a program that takes input in digits and display the result in words from 1 to 1000