Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,239 questions

56,142 answers

573 users

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 133 views
1 answer 105 views
1 answer 131 views
1 answer 138 views
1 answer 148 views
...