C语言常用函数-isspace()判断字符是否为空白字符函数

时间:2021-07-28 21:23:23   收藏:0   阅读:0

演示版本

VS2013

isspace()函数用于判断字符是否为空白字符。

语法

int isspace(int ch);

isspace()函数的语法参数说明如下:

参数ch为一个待检查的字符。

isspace()函数的返回值:不是空白字符返回0,是则返回非0。

示例

本示例演示用isspace()函数判断输入的字符是否为空白字符。其具体代码如下:

#include <stdio.h>
#include <ctype.h>

int main()
{
    char ch;
    printf("input a character");//输入一个字符
    scanf_s("%c", &ch);
    if (isspace(ch))//判断输入字符是否为空白字符
        printf("%c is space\n", ch);
    else
        printf("%c is not space\n", ch);

    return 0;
}

技术图片

 

阿飞

2021年7月27日

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!