User Tools

Site Tools


cpp:cctype:tolower

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

cpp:cctype:tolower [2024/02/16 01:04] (current)
Line 1: Line 1:
 +{{keywords>wiki library source code example reference}}
 +====== tolower ======
 +<code cpp>
 +    #include <cctype>
 +    int tolower( int char );
 +</code>
 +    Returns lower case type of the character
 +
 +===== cpp Sourcecode Example =====
 +<code cpp>
 +#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;
 +}
 +</code>
 +==== output ====
 +    output:
 +    i WHANT tHIS IN LOWERCASE
 +    
 +
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
cpp/cctype/tolower.txt · Last modified: 2024/02/16 01:04 (external edit)

Impressum Datenschutz