fork download
  1. #include <iostream>
  2. #include <map>
  3. #include <iomanip>
  4. using namespace std;
  5.  
  6. int main() {
  7. char name = 'A';
  8. map<char, bool> vars;
  9. vars[name] = true;
  10.  
  11. cout << boolalpha << vars[name] << endl;
  12. return 0;
  13. }
Success #stdin #stdout 0s 4420KB
stdin
Standard input is empty
stdout
true