C语言 isupper() 函数用来判断一个字符是否是大写字母。
头文件:ctype.h
语法/原型:
参数 c 表示要检测的字符。
返回值:返回值为非 0(真)表示 c 是大写字母,返回值为 0(假)表示 c 不是大写字母。
【实例】使用C语言 isupper() 函数判断字符串中的字符是否是大写字母,如果是,那么转换为小写字母。
#include <stdio.h>
#include <ctype.h>
int main ()
{
int i = 0;
char str[] = "C++ Java Python C# Linux Golang Shell\n";
char c;
while(str[i])
{
c = str[i];
if(isupper(c)) c = tolower(c);
putchar(c);
i++;
}
return 0;
}
运行结果:c++ java python c# linux golang shell