C语言 islower() 函数用来判断一个字符是否是小写字母。
头文件:ctype.h
语法/原型:
int islower(int c);
参数 c 表示要检测的字符或者 ASCII 码。
返回值:返回值为非 0(真)表示 c 是小写字母,返回值为 0(假)表示 c 不是小写字母。
【实例】使用C语言 islower() 函数判断一个字符串中的字符是否是小写字母,如果是,那么转换为大写字母。
#include <stdio.h> #include <ctype.h> int main () { int i=0; char str[] = "c++ java python c#/n"; char c; while(str[i]) { c = str[i]; if (islower(c)) c = toupper(c); putchar(c); i++; } return 0; }
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/22496.html