{{keywords>wiki library source code example reference}} ====== tolower ====== #include int tolower( int char ); Returns lower case type of the character ===== cpp Sourcecode Example ===== #include /* including standard library */ #include using namespace std; int main ( void ) { /* convert the Chars "I" and "T" to lowercase */ cout << static_cast(tolower('I')) << " WHANT " << static_cast(tolower('T')) << "HIS IN LOWERCASE" << endl; return 0; } ==== output ==== output: i WHANT tHIS IN LOWERCASE