C++ Programming/Code/Standard C Library/Functions/islower

From Wikibooks, open books for an open world
Jump to navigation Jump to search

islower[edit | edit source]

Syntax
#include <cctype>
int islower( int ch );

The islower() function returns non-zero if its argument is a lowercase letter. Otherwise, zero is returned.

Related topics
isupper