Code Snipet of the Day
Ξ February 4th, 2010 | → | ∇ Programming |
| #include <cctype> #include <string> #include <algorithm>
std::transform(s.begin(), s.end(), s.begin(), ::toupper); |
What does this do?
| #include <cctype> #include <string> #include <algorithm>
std::transform(s.begin(), s.end(), s.begin(), ::toupper); |
◊ Copyright © 2010 Single Point of Failure | Created by Marcos Bento | Entries | Comments