User Tools

Site Tools


cpp:cctype:isupper

Differences

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

Link to this comparison view

cpp:cctype:isupper [2024/02/16 01:04] (current)
Line 1: Line 1:
 +{{keywords>wiki library source code example reference}}
 +===== isupper =====
 +<code cpp>
 +    int isupper(int chr);
 +</code>
 +
 +tests wheather a char is in uppercase
 +
 +===== cpp Sourcecode Example =====
 +<code cpp>
 +#include <iostream> /* including standard library */
 +#include <string>
 +#include <cctype>
 +
 +using namespace std;
 +int main ( void )
 +{
 +  int i;
 +  string str="Test -!&%1";
 +  for (i=0; i <= 11;i++)
 +    {
 +     if ( isupper(str[i]) != 0 )
 +      {
 +       cout << "Character " << i << " is uppercase" << endl;
 +      }
 +    }
 +  return 0;
 +}
 +
 +
 +</code>
 +
 +==== output ====
 +    output:
 +    Character 0 is uppercase
  

on the occasion of the current invasion of Russia in Ukraine

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

Impressum Datenschutz