fork download
  1. #include <iostream>
  2. #include <map>
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7. int main ()
  8. {
  9. map < int, map < const char, string > > mapa;
  10. mapa[0]['d']="12345";
  11. cout << mapa[0]['d'];
  12.  
  13. }
Success #stdin #stdout 0.01s 2816KB
stdin
Standard input is empty
stdout
12345