prints all the keys and values in a map c 2b 2b

Solutions on MaxInterview for prints all the keys and values in a map c 2b 2b by the best coders in the world

showing results for - "prints all the keys and values in a map c 2b 2b"
Isidora
21 Mar 2017
1for (auto x : m) {
2cout << x.first << " " << x.second << "\n";
3}