fork(6) download
  1. #include <iostream>
  2. #include <map>
  3.  
  4. int main() {
  5. std::multimap<int,std::string> mymap;
  6. mymap.emplace(1, "hello ");
  7. mymap.emplace(1, "world!");
  8. std::cout << mymap.size() << "\n";
  9. return 0;
  10. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
2