Programming Reference/Librarys
Question & Answer
Q&A is closed
#include <iostream> /* including standard library */ #include <cctype> using namespace std; int main ( void ) { /* convert the Chars "I" and "T" to lowercase */ cout << static_cast<char>(tolower('I')) << " WHANT " << static_cast<char>(tolower('T')) << "HIS IN LOWERCASE" << endl; return 0; }
output: i WHANT tHIS IN LOWERCASE