函数名: islower
头文件:<ctype.h>
函数原型: int islower(int ch);
功 能: 判断字符是否为小写英文字母
参数: int ch 待检查的字符
返回值: ch不是小写英文字母 返回0 , ch是小写英文字母 返回非0
程序例:判断输入的字符是否为小写英文字母
#include<ctype.h>#include<stdio.h>intmain(){charch;printf(inputacharacter:);scanf(%c,&ch);if(islower(ch)){printf(%cisloweralpha.,ch);}else{printf(%cisnotloweralpha.,ch);}putchar('n');return0;}
运行结果:
inputacharacter:ggisloweralpha.