islower()函数用于判断字符是否为小写英文字母。
islower()函数 语法
int islower(int ch);
参数ch为一个待检查的字符。
islower()函数的返回值:不是小写英文字母时返回0,否则返回非0值。
islower()函数 示例
本示例演示判断输入的字符是否为小写英文字母。
#include"ctype.h"
#include"stdio.h"
main()
{
char ch;
printf(" input a character:");/*输入一个字符*/
scanf("%c",&ch);
if(islower(ch))/*判断输入字符是否是小写英文字母*/
printf("%c is lower alpha",ch);
else
printf("%c is not lower alpha.",ch);
}
运行结果如图所示。