Posts by StPiere • 126 points
1 post
-
1
votes2
answers99
viewsA: doubt string/map c++
#include <iostream> #include <algorithm> int main() { std::string s{"Test string"}; std::transform(s.begin(), s.end(), s.begin(), ::tolower); std::cout << s << std::endl; }…