View Single Post
Old 10-13-2004, 07:22 PM   #3 (permalink)
Valmont
[code][/code] enforcer
 
Valmont's Avatar
 
Join Date: Mar 2003
Location: Netherlands
Posts: 1,544
Valmont is on a distinguished road
No need to hate . We can do it nicely OS-independant:

Code:
 #include <iostream>
#include <cctype>
#include <string>
#include <algorithm>

using namespace std;

int main()
{
   string s = "UPPERCASE (?)";
   
   transform(s.begin(), s.end(), s.begin(), (int(*)(int)) tolower);
   
   cout<<s<<endl;
   
   return 0;
}
__________________
Valmont is offline   Reply With Quote