Answer Posted / rdurgalakshmi
Vector manages memory allocations, manages in the sense, it
provides constructor,copy constructor,assignment operator,
destructor etc. whereas array doesn't.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are the 5 oop principles?
What is overloading in oop?
What is the importance of oop?
program for insertion ,deletion,sorting in double link list
What is polymorphism programming?
What are main features of oop?
can we make game by using c
What is advantage of inheritance?
What is object and class in oops?
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
What is basic concept of oop?
what are the different types of qualifier in java?
What is abstraction in oops with example?
Why do while loop is used?
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