fork download
  1. #include <stdio.h>
  2. #include <map>
  3. #include <string>
  4.  
  5. int main(void)
  6. {
  7. std::map<std::string,
  8. std::map<std::string,
  9. std::map<std::string, std::string>>> m{{"HARDWARE\\DESCRIPTION\\System\\BIOS",
  10. {{ "REG_SZ",
  11. {{ "SystemSKU", "SystemSKU" }}
  12. }}
  13. }};
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 3472KB
stdin
Standard input is empty
stdout
Standard output is empty