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 |
Are there any new intrinsic (built-in) data types?
Write a short code using c++ to print out all odd number from 1 to 100 using a for loop
What is an explicit constructor?
What is the purpose of template?
What is virtual destructors? Why they are used?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
How is data hiding achieved in c++?
Is c++ a difficult language?
How is new() different from malloc()?
What is the difference between operator new and the new operator?
Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) dynamic_cast c) static_cast d) const_cast
In java a final class is a class that cannot be derived. How can you make a similar class in C++