fork download
  1. #include <iostream>
  2. int main(){
  3. std::string E;
  4. E = 'a';
  5. std::cout << E[0];
  6. std::cout << E;
  7. }
Success #stdin #stdout 0.01s 5532KB
stdin
Standard input is empty
stdout
aa