其他分享
首页 > 其他分享> > C-(字符分类函数)汇总

C-(字符分类函数)汇总

作者:互联网

 

 

#define _CRT_SECURE_NO_WARNINGS 1

#include<stdio.h>
//#include<string.h>
//#include<assert.h>
//#include<errno.h>
//strerror//把错误码转换为错误信息
//perror//打印错误信息
#include<ctype.h>
int main()
{
    char ch = '#';
    //isdigit 如果是数字字符返回非0的值,不是返回0;
    int ret = isdigit(ch);

    printf("%d\n", ret);
    return 0;
}

 

标签:字符,ch,函数,int,错误信息,汇总,ret,isdigit,include
来源: https://www.cnblogs.com/zzy-c/p/16130354.html