How to iterate over map keys and values in C++

2 Answers

0 votes
#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

*/

 



answered Feb 1, 2023 by avibootz
0 votes
#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& keyvalue: mp) {
	    std::cout << "Key: " << keyvalue.first << " Value: " << keyvalue.second << "\n";
    }
}



/*
run:

Key: c Value: 1
Key: cpp Value: 2
Key: java Value: 3
Key: csharp Value: 4

*/

 



answered Feb 1, 2023 by avibootz

Related questions

1 answer 33 views
1 answer 44 views
1 answer 37 views
3 answers 60 views
...