What is "map" in STL?
Answers were Sorted based on User's Feedback
Answer / saroj das ,balsore
map class support an associative container in which
unique keys are mapped .with values. in essence ,a key is
simply name that you give to a value .once value you can
retrive it by using has been stored.
the most general sense, a map is a list of key /
value pairs .
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / shakti singh khinchi
map is a associative container which is known for a key
value pair. Whereas key always unique and associated with a
non unique value.
maps are sorted on the basis of keys. They are simplified
form of hashing.
| Is This Answer Correct ? | 1 Yes | 0 No |
Can we make any program in c++ without using any header file and what is the shortest program in c++.
What is the difference between static link library and dynamic link library?
explain the reference variable in c++?
When are exception objects created?
Difference between a homogeneous and a heterogeneous container
given the code segment below void main() { cout<<"my no. is"; } question is how can we get the output hai aravind my no. is 99999999999 without editig the main().
Is dev c++ free?
Write some differences between an external iterator and an internal iterator? Describe the advantage of an external iterator.
What is endl?
How should runtime errors be handled in c++?
What are the debugging methods you use when came across a problem?
Which one is a preferred language C or C++? Why?