User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







cpp:cctype:islower

islower

    int islower(int chr);

checks whether a character is lowercase

cpp Sourcecode Example

#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 ( islower(str[i]) != 0 )
      {
       cout << "Character " << i << " is a lower char" << endl;
      }
    }
  return 0;
}

output

  Character 1 is a lower char
  Character 2 is a lower char
  Character 3 is a lower char

on the occasion of the current invasion of Russia in Ukraine

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

Impressum Datenschutz