#include <map>
#include <iostream>
int main() {
std::map<const char*, int> mp;
mp["c"] = 1;
mp["cpp"] = 2;
mp["java"] = 3;
mp["csharp"] = 4;
for (const auto& [key, value]: mp) {
std::cout << "Key: " << key << " Value: " << value << '\n';
}
}
/*
run:
Key: c Value: 1
Key: cpp Value: 2
Key: java Value: 3
Key: csharp Value: 4
*/