Code Snipet of the Day
Ξ February 4th, 2010 | → 0 Comments |
∇ Programming | ∇ C++, code, snipet, toupper |
| #include <cctype> #include <string> #include <algorithm>
std::transform(s.begin(), s.end(), s.begin(), ::toupper); |
What does this do?




