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 |
Explain function overloading
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
Is c++ built on c?
How did c++ get its name?
How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?
Am pass the 10000 records to target in target I will take commit interval 15000 when I was stop the work flow what will happened
Explain deep copy and a shallow copy?
When does a name clash occur?
Live example for static function?
What is the difference between global int and static int declaration?
What are the rules about using an underscore in a c++ identifier?
Explain the operation of overloading of an assignment operator.