C语言islower函数介绍、示例和实现

2021-02-04 22:15

阅读:381

标签:nim   实现   img   isl   code   命名   ref   src   pre   

C语言islower函数用于判断字符是否为小写字母(a-z)。

在本文中,我们先来介绍islower函数的使用方法,然后编写一个自定义的_islower函数,实现与islower函数相同的功能。

1、包含头文件

#include 

2、函数声明

int islower(int c);

3、功能说明

判断参数c是否为小写字母,您可能会问:islower函数的参数是int c,是整数,不是字符,在C语言中,字符就是整数,请补充学习一下基础知识。

返回值:0-不是小写字母,非0-是小写字母。

4、示例

/*
 * 程序名:book.c,此程序演示C语言的islower函数。
 * 作者:C语言技术网(www.freecplus.net) 日期:20190525
*/
#include 

int main()
{
  printf("islower(‘-‘)=%d\n",islower(‘-‘));
  printf("islower(‘0‘)=%d\n",islower(‘0‘));
  printf("islower(‘a‘)=%d\n",islower(‘a‘));
  printf("islower(‘A‘)=%d\n",islower(‘A‘));
}

运行效果
技术图片

5、自定义的islower函数的实现方法

在以下示例中,把自定义的islower函数命名为_islower。

/*
 * 程序名:book.c,此程序演示C语言自定义的islower函数。
 * 作者:C语言技术网(www.freecplus.net) 日期:20190525
*/
#include 

// 自定义的islower函数。
int _islower(int c)
{
  if (c>=‘a‘ && c

运行效果
技术图片

6、版权声明

C语言技术网原创文章,转载请说明文章的来源、作者和原文的链接。

来源:C语言技术网(www.freecplus.net)

作者:码农有道

如果这篇文章对您有帮助,请点赞支持,或在您的博客中转发此文,让更多的人可以看到它,谢谢!!!

C语言islower函数介绍、示例和实现

标签:nim   实现   img   isl   code   命名   ref   src   pre   

原文地址:https://blog.51cto.com/14793471/2490984


评论


亲,登录后才可以留言!