码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2021-07-28 21:23:23      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:char   loading   font   c语言   pre   class   style   src   com   

演示版本

VS2013

  • isspace()函数

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日

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

标签:char   loading   font   c语言   pre   class   style   src   com   

原文地址:https://www.cnblogs.com/nxopen2018/p/15067910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!