fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. char key = 'A';
  7.  
  8. char test = key + 32;
  9.  
  10. std::cout << key << std::endl;
  11. std::cout << test << std::endl;
  12.  
  13. std::cout << (key += 32) << std::endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
A
a
a