3 Rahul 9876 Amit 9123 Neha 9988
Amit 9123 Neha 9988 Rahul 9876
void stl_q6_map() {
map<string, int> ages;
// Insert key-value pairs
ages["Raj"] = 20;
ages["Priya"] = 22;
ages["Amit"] = 21;
cout << "Raj's age: " << ages["Raj"] << endl;
// Iterate
cout << "All ages:" << endl;
for(auto pair : ages) {
cout << pair.first << " : " << pair.second << endl;
}
}
void stl_q6_map() {
map<string, int> ages;
// Insert key-value pairs
ages["Raj"] = 20;
ages["Priya"] = 22;
ages["Amit"] = 21;
cout << "Raj's age: " << ages["Raj"] << endl;
// Iterate
cout << "All ages:" << endl;
for(auto pair : ages) {
cout << pair.first << " : " << pair.second << endl;
}
}