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 |
What is the average salary of a c++ programmer?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
What is input operator in c++?
What is difference c and c++?
What is Virtual Inheritance?
What language is a dll written in?
when can we use virtual destructor?
7 Answers HCL, HP, Virage Logic,
What is the best c++ book for beginners?
What are the basics of local (auto) objects?
Differentiate between an array and a list?
Write a C++ program to sort digits of all the 4 digit number and display the sorted 4 digit number
How can you quickly find the number of elements stored in a dynamic array?