User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







cpp:cctype:toupper

toupper

    #include <cctype>
    int toupper( int char );
  Returns upper case type of the character

cpp Sourcecode Example

#include <iostream> /* including standard library */
#include <cctype>
 
using namespace std;
int main ( void )
{
  /* convert the Chars "i" and "t" uppercase  */
  cout << static_cast<char>(toupper('i')) << " whant " << static_cast<char>(toupper('t')) << "his in uppercase" << endl;
 
return 0;
}

output

  output:
  I whant This in uppercase

on the occasion of the current invasion of Russia in Ukraine

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

Impressum Datenschutz