Answer Posted / pavan kumar
Sequence Containers
- deque
- list
- vector
Associative Containers
- map (multimap)
- set (multiset)
Container Adapters
- priority_queue
- queue
- stack
| Is This Answer Correct ? | 24 Yes | 1 No |
Post New Answer View All Answers
What is a loop? What are different types of loops in c++?
What is the advantage of an external iterator.
What is a storage class?
What is a wchar_t in c++?
Which bit wise operator is suitable for putting on a particular bit in a number?
Will this c++ program execute or not?
what are the iterator and generic algorithms.
what is a class? Explain with an example.
Write a program to interchange 2 variables without using the third one.
What is vector string in c++?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Why is polymorphism useful?
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
Differentiate between a copy constructor and an overloaded assignment operator.
Explain the use of this pointer?