What are the types of STL containers?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / saroj das ,
containers are objects that hold other object . there are
different type vector, dequeue,list, map etc...
| Is This Answer Correct ? | 11 Yes | 4 No |
Answer / pradeep
Sequence Containers
- deque
- list
- vector
Associative Containers
- map (multimap)
- set (multiset)
Container Adapters
- priority_queue
- queue
- stack
| Is This Answer Correct ? | 1 Yes | 0 No |
Write a program to interchange 2 variables without using the third one.
What is the standard template library (stl)?
Can we use clrscr in c++?
Is oops and c++ same?
What is an Object/Instance?
Is c++ an oop?
What are class and object in C++?
What's the best free c++ profiler for windows?
Is c++ proprietary?
Describe exception handling concept with an example?
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
Which operator cannot overload?