how to print all the values of map inc++ code example
Example: prints all the keys and values in a map c++
for (auto x : m) {
cout << x.first << " " << x.second << "\n";
}
for (auto x : m) {
cout << x.first << " " << x.second << "\n";
}