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