fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <algorithm>
  4. using namespace std;
  5.  
  6. string StrLower(string str) {
  7. transform(str.begin(), str.end(), str.begin(), [](char c) -> char { return tolower(c); });
  8. return str;
  9. }
  10. int main() {
  11. cout << StrLower("TESTE");
  12. }
  13.  
  14. //https://pt.stackoverflow.com/q/293208/101
Success #stdin #stdout 0s 4276KB
stdin
Standard input is empty
stdout
teste