cctype

简介:

在头文件<ctype.h>中定义了一些测试字符的函数。在这些函数中,每个函数的参数都是整型int,而每个参数的值或者为EOF,或者为char类型的字符。<ctype.h>中定义的标准函数列表如下:

函数定义

函数功能简介

int isalnum(int c)

检查字符是否是字母或数字

int isalpha(int c)

检查字符是否是字母

int isascii(int c)

检查字符是否是ASCII码

int iscntrl(int c)

检查字符是否是控制字符

int isdigit(int c)

检查字符是否是数字字符

int isgraph(int c)

检查字符是否是可打印字符

int islower(int c)

检查字符是否是小写字母

int isprint(int c)

检查字符是否是可打印字符

int ispunct(int c)

检查字符是否是标点字符

int isspace(int c)

检查字符是否是空格符

int isupper(int c)

检查字符是否是大写字母

int isxdigit(int c)

检查字符是否是十六进制数字字符

int toupper(int c)

将小写字母转换为大写字母

int tolower(int c)

将大写字母转换为小写字母

     

 





本文转自夏雪冬日博客园博客,原文链接:http://www.cnblogs.com/heyonggang/archive/2012/12/11/2812776.html,如需转载请自行联系原作者


目录
相关文章
|
6月前
|
编译器 C语言
#include
#include
110 0
|
1月前
|
编译器 C++
#include<> 与#include ""的区别
在C++中,`#include &lt;&gt;` 和 `#include &quot;&quot;` 都用于包含头文件,但使用场景不同。`#include &lt;&gt;` 用于包含系统标准库头文件,编译器会在标准库路径中查找;而 `#include &quot;&quot;` 用于包含用户自定义的头文件,编译器会优先在当前项目目录中查找。
|
1月前
include 的应用练习
include 的应用练习。
19 7
|
1月前
|
存储 C语言
C 标准库 - <stdlib.h>详解
`&lt;stdlib.h&gt;` 是 C 语言标准库中的头文件,提供了多种工具和函数,涵盖内存管理、进程控制、转换及随机数生成等功能。其中包括 `malloc`、`calloc` 和 `free` 等内存管理函数,`atoi` 和 `atof` 等转换函数,以及 `rand` 和 `srand` 等随机数生成函数。此外,还提供了 `exit` 和 `atexit` 等程序控制函数,以及 `getenv` 和 `system` 等环境控制函数。
163 11
|
5月前
#include的应用练习
【6月更文挑战第22天】#include的应用练习。
34 2
|
5月前
|
存储 程序员
C 标准库 - <stdlib.h>
C 标准库 - <stdlib.h>
|
6月前
|
测试技术
常用字符串函数 #include<string.h>与#include<stdio.h>
常用字符串函数 #include<string.h>与#include<stdio.h>
67 1
|
6月前
|
存储
include函数
【2月更文挑战第15天】include函数。
66 2
|
6月前
#include 的应用练习
#include 的应用练习。
53 3