atof
语法:
#include <stdlib.h>
double atof( const char *str );

功能:将字符串str转换成一个双精度数值并返回结果。 参数str 必须以有效数字开头,但是允许以“E”或“e”除外的任意非数字字符结尾。例如:

x = atof( "42.0is_the_answer" );
x的值为42.0.

相关主题:
atoi() and atol().
--------------------------------------------------------------------------------

atoi
语法:
#include <stdlib.h>
int atoi( const char *str );

功能:将字符串str转换成一个整数并返回结果。参数str 以数字开头,当函数从str 中读到非数字字符则结束转换并将结果返回。例如,

i = atoi( "512.035" );
i 的值为 512.

相关主题:
atof() and atol().
--------------------------------------------------------------------------------

atol
语法:
#include <stdlib.h>
long atol( const char *str );

功能:将字符串转换成长整型数并返回结果。函数会扫描参数str字符串,跳过前面的空格字符,直到遇上数字或正负符号才开始做转换,而再遇到非数字或字符串结束时才结束转换,并将结果返回。例如,

x = atol( "1024.0001" );
x的值为1024L.

相关主题:
atof() and atoi().
--------------------------------------------------------------------------------

isalnum
语法:
#include <ctype.h>
int isalnum( int ch );

功能:如果参数是数字或字母字符,函数返回非零值,否则返回零值。

char c;
    scanf( "%c", &c );
    if( isalnum(c) )
      printf( "You entered the alphanumeric character %c/n", c );
相关主题:
isalpha(), iscntrl(), isdigit(), isgraph(), isprint(), ispunct(), and isspace().
--------------------------------------------------------------------------------

isalpha
语法:
#include <ctype.h>
int isalpha( int ch );

功能:如果参数是字母字符,函数返回非零值,否则返回零值。

char c;
    scanf( "%c", &c );
    if( isalpha(c) )
      printf( "You entered a letter of the alphabet/n" );
相关主题:
isalnum(), iscntrl(), isdigit(), isgraph(), isprint(), ispunct(), and isspace().
--------------------------------------------------------------------------------

iscntrl
语法:
#include <ctype.h>
int iscntrl( int ch );

功能:如果参数是控制字符(0和0x1F之间的字符,或者等于0x7F)函数返回非零值,否则返回零值。

相关主题:
isalnum(), isalpha(), isdigit(), isgraph(), isprint(), ispunct(), and isspace().

--------------------------------------------------------------------------------

isdigit
语法:

#include <ctype.h>
int isdigit( int ch );

功能:如果参数是0到9之间的数字字符,函数返回非零值,否则返回零值.

char c;
    scanf( "%c", &c );
    if( isdigit(c) )
      printf( "You entered the digit %c/n", c );
相关主题:
isalnum(), isalpha(), iscntrl(), isgraph(), isprint(), ispunct(), and isspace().

--------------------------------------------------------------------------------

isgraph
语法:

#include <ctype.h>
int isgraph( int ch );

功能:如果参数是除空格外的可打印字符(可见的字符),函数返回非零值,否则返回零值。

相关主题:
isalnum(), isalpha(), iscntrl(), isdigit(), isprint(), ispunct(), and isspace().

--------------------------------------------------------------------------------

islower
语法:

#include <ctype.h>
int islower( int ch );

功能:如果参数是小写字母字符,函数返回非零值,否则返回零值。

相关主题:
isupper()

--------------------------------------------------------------------------------

isprint
语法:

#include <ctype.h>
int isprint( int ch );

功能:如果参数是可打印字符(包括空格),函数返回非零值,否则返回零值。

相关主题:
isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), ispunct(), and isspace().

--------------------------------------------------------------------------------

ispunct
语法:

#include <ctype.h>
int ispunct( int ch );

功能:如果参数是除字母,数字和空格外可打印字符,函数返回非零值,否则返回零值。

相关主题:
isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), isprint(), and isspace().

--------------------------------------------------------------------------------

isspace
语法:

#include <ctype.h>
int isspace( int ch );

功能:如果参数是空格类字符(即:单空格,制表符,垂直制表符,满页符,回车符,新行符),函数返回非零值,否则返回零值。

相关主题:
isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), and ispunct().

--------------------------------------------------------------------------------

isupper
语法:

#include <ctype.h>
int isupper( int ch );

功能:如果参数是大写字母字符,函数返回非零值,否则返回零值。

相关主题:
tolower()

--------------------------------------------------------------------------------

isxdigit
语法:

#include <ctype.h>
int isxdigit( int ch );

功能:如果参数是十六进制数字字符(即:A-F, a-f, 0-9),函数返回非零值,否则返回零值。

相关主题:
isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), ispunct(), and isspace().

--------------------------------------------------------------------------------

memchr
语法:

#include <string.h>
void *memchr( const void *buffer, int ch, size_t count );

功能:函数在buffer指向的数组的count个字符的字符串里查找ch 首次出现的位置。返回一个指针,指向ch 在字符串中首次出现的位置, 如果ch 没有在字符串中找到,返回NULL。例如:

char names[] = "Alan Bob Chris X Dave";
    if( memchr(names,'X',strlen(names)) == NULL )
      printf( "Didn't find an X/n" );
    else
      printf( "Found an X/n" );
相关主题:
memcpy() and strstr().

--------------------------------------------------------------------------------

memcmp
语法:

#include <string.h>
int memcmp( const void *buffer1, const void *buffer2, size_t count );

功能:函数比较buffer1 和 buffer2的前count 个字符。返回值如下:

Value
解释

less than 0
buffer1 is less than buffer2

equal to 0
buffer1 is equal to buffer2

greater than 0
buffer1 is greater than buffer2

相关主题:
memchr(), memcpy(), and strcmp().

--------------------------------------------------------------------------------

memcpy
语法:

#include <string.h>
void *memcpy( void *to, const void *from, size_t count );

功能:函数从from中复制count 个字符到to中,并返回to指针。 如果to 和 from 重叠,则函数行为不确定。

相关主题:
memmove().

--------------------------------------------------------------------------------

memmove
语法:

#include <string.h>
void *memmove( void *to, const void *from, size_t count );

功能: 与mencpy相同,不同的是当to 和 from 重叠,函数正常仍能工作。

相关主题:
memcpy().

--------------------------------------------------------------------------------

memset
语法:

#include <string.h>
void *memset( void *buffer, int ch, size_t count );

功能: 函数拷贝ch 到buffer 从头开始的count 个字符里, 并返回buffer指针。 memset() 可以应用在将一段内存初始化为某个值。例如:

memset( the_array, '/0', sizeof(the_array) );
这是将一个数组的所以分量设置成零的很便捷的方法。

相关主题:
memcmp(), memcpy(), and memmove().

--------------------------------------------------------------------------------

strcat
语法:

#include <string.h>
char *strcat( char *str1, const char *str2 );

功能:函数将字符串str2 连接到str1的末端,并返回指针str1. 例如:

printf( "Enter your name: " );
    scanf( "%s", name );
    title = strcat( name, " the Great" );
    printf( "Hello, %s/n", title );
相关主题:
strchr(), strcmp(), and strcpy().

--------------------------------------------------------------------------------

strchr
语法:

#include <string.h>
char *strchr( const char *str, int ch );

功能:函数返回一个指向str 中ch 首次出现的位置,当没有在str 中找ch到返回NULL。

相关主题:
strpbrk(), strspn(), strstr(), and strtok().

--------------------------------------------------------------------------------

strcmp
语法:

#include <string.h>
int strcmp( const char *str1, const char *str2 );

功能:比较字符串str1 and str2, 返回值如下:

返回值
解释

less than 0
str1 is less than str2

equal to 0
str1 is equal to str2

greater than 0
str1 is greater than str2

例如:

printf( "Enter your name: " );
    scanf( "%s", name );
    if( strcmp( name, "Mary" ) == 0 )
      printf( "Hello, Dr. Mary!/n" );
相关主题:
memcmp(), strchr(), strcpy(), and strncmp().

--------------------------------------------------------------------------------

strcoll
语法:

#include <string.h>
int strcoll( const char *str1, const char *str2 );

功能:比较字符串str1 和 str2, 很象strcmp. 但是, strcoll() 使用在目前环境中由setlocale()设定的次序进行比较。

--------------------------------------------------------------------------------

strcpy
语法:

#include <string.h>
char *strcpy( char *to, const char *from );

功能:复制字符串from 中的字符到字符串to,包括空值结束符。返回值为指针to。

相关主题:
memcpy(), strchr(), strcmp(), strncmp(), and strncpy().

--------------------------------------------------------------------------------

strcspn
语法:

#include <string.h>
size_t strcspn( const char *str1, const char *str2 );

功能:函数返回str1 开头连续n个字符都不含字符串str2内字符的字符数。

相关主题:
strrchr(), strpbrk(), strstr(), and strtok().

--------------------------------------------------------------------------------

strerror
语法:

#include <string.h>
char *strerror( int num );

功能:函数返回一个被定义的与某错误代码相关的错误信息。

--------------------------------------------------------------------------------

strlen
语法:

#include <string.h>
size_t strlen( char *str );

功能:函数返回字符串str 的长度( 即空值结束符之前字符数目)。

相关主题:
memcpy(), strchr(), strcmp(), and strncmp().

--------------------------------------------------------------------------------

strncat
语法:

#include <string.h>
char *strncat( char *str1, const char *str2, size_t count );

功能:将字符串from 中至多count个字符连接到字符串to中,追加空值结束符。返回处理完成的字符串。

相关主题:
strcat(), strnchr(), strncmp(), and strncpy().

--------------------------------------------------------------------------------

strncmp
语法:

#include <string.h>
int strncmp( const char *str1, const char *str2, size_t count );

功能:比较字符串str1 和 str2中至多count个字符。返回值如下:

返回值
解释

less than 0
str1 is less than str2

equal to 0
str1 is equal to str2

greater than 0
str1 is greater than str2

如果参数中任一字符串长度小于count, 那么当比较到第一个空值结束符时,就结束处理。

相关主题:
strcmp(), strnchr(), and strncpy().

--------------------------------------------------------------------------------

strncpy
语法:

#include <string.h>
char *strncpy( char *to, const char *from, size_t count );

功能:将字符串from 中至多count个字符复制到字符串to中。如果字符串from 的长度小于count,其余部分用'/0'填补。返回处理完成的字符串。

相关主题:
memcpy(), strchr(), strncat(), and strncmp().

--------------------------------------------------------------------------------

strpbrk
语法:

#include <string.h>
char *strpbrk( const char *str1, const char *str2 );

功能:函数返回一个指针,它指向字符串str2中任意字符在字符串str1 首次出现的位置,如果不存在返回NULL。

相关主题:
strspn(), strrchr(), strstr(), and strtok().

--------------------------------------------------------------------------------

strrchr
语法:

#include <string.h>
char *strrchr( const char *str, int ch );

功能:函数返回一个指针,它指向字符ch 在字符串str末次出现的位置,如果匹配失败,返回NULL。

相关主题:
strpbrk(), strspn(), strstr(), strtok(),

--------------------------------------------------------------------------------

strspn
语法:

#include <string.h>
size_t strspn( const char *str1, const char *str2 );

功能:函数返回字符串str1中第一个不包含于字符串str2的字符的索引。

相关主题:
strpbrk(), strrchr(), strstr(), strtok(),

--------------------------------------------------------------------------------

strstr
语法:

#include <string.h>
char *strstr( const char *str1, const char *str2 );

功能:函数返回一个指针,它指向字符串str2 首次出现于字符串str1中的位置,如果没有找到,返回NULL。

相关主题:
strchr(), strcspn(), strpbrk(), strspn(), strtok(), strrchr(),

--------------------------------------------------------------------------------

strtod
语法:

#include <stdlib.h>
double strtod( const char *start, char **end );

功能:函数返回带符号的字符串start所表示的浮点型数。字符串end 指向所表示的浮点型数之后的部分。如果溢出发生,返回HUGE_VAL或 -HUGE_VAL。

相关主题:
atof()

--------------------------------------------------------------------------------

strtok
语法:

#include <string.h>
char *strtok( char *str1, const char *str2 );

功能:函数返回字符串str1中紧接“标记”的部分的指针, 字符串str2是作为标记的分隔符。如果分隔标记没有找到,函数返回NULL。为了将字符串转换成标记,第一次调用str1 指向作为标记的分隔符。之后所以的调用str1 都应为NULL。

例如:

char str[] = "now # is the time for all # good men to come to the # aid of their country";
    char delims[] = "#";
    char *result = NULL;

result = strtok( str, delims );

while( result != NULL ) {
        printf( "result is /"%s/"/n", result );
         result = strtok( NULL, delims );
    }
以上代码的运行结果是:

result is "now "
    result is " is the time for all "
    result is " good men to come to the "
    result is " aid of their country"
相关主题:
strchr(), strcspn(), strpbrk(), strrchr(), and strspn().

--------------------------------------------------------------------------------

strtol
语法:

#include <stdlib.h>
long strtol( const char *start, char **end, int base );

功能:函数返回带符号的字符串start所表示的长整型数。参数base代表采用的进制方式。指针end 指向start所表示的整型数之后的部分。如果返回值无法用长整型表示,函数则返回LONG_MAX或LONG_MIN. 错误发生时,返回零。

相关主题:
atol().

--------------------------------------------------------------------------------

strtoul
语法:

#include <stdlib.h>
unsigned long strtoul( const char *start, char **end, int base );

功能:函数基本等同 strtol(), 不同的是,它不仅可以返回长整型数,而且可以返回无符号的长整型数。

相关主题:
strtol()

--------------------------------------------------------------------------------

strxfrm
语法:

#include <string.h>
size_t strxfrm( char *str1, const char *str2, size_t num );

功能:函数将字符串str2 的前num 个字符存储到字符串str1中。如果strcoll() 处理字符串str1 和旧的字符串str2, 返回值和strcmp()的处理结果一样。

相关主题:
strcmp(), strcoll(),

--------------------------------------------------------------------------------

tolower
语法:

#include <ctype.h>
int tolower( int ch );

功能:函数字符ch的小写形式。

相关主题:
toupper(),

--------------------------------------------------------------------------------

toupper
语法:

#include <ctype.h>
int toupper( int ch );

功能:函数字符ch的大写形式。

相关主题:
tolower(),

stdlib 标准C 模板库函数相关推荐

  1. 根据标准word模板生成word文档类库(开源)

    前言   最近因项目需要要自定义标准word模板,并以编码方式操作word模板.填充数据和生成word文档,于是自己写了条小"内裤"来实现这个功能.该"内裤"只 ...

  2. 练字格子纸模板pdf_a4田字格练字纸打印版-练字标准田字格模板-a4打印版下载最新免费excel版-西西软件下载...

    练字标准田字格模板-a4打印版是一份a4田字格练字模板下载,硬笔书法练习田字格模板-标准A4打印版.标准田字格模板-每日练字.硬笔书法练习田字格模板-标准A4打印版.标准田字格模板-A4打印.硬笔书法 ...

  3. Linux下标准I/O库函数fopen、fclose函数的使用方法

    fopen.fclose使用方法详解 1.I/0的管理分类 1.1打开流 1.2关闭流 1.3代码实操 1.4运行截图 无论是编写系统程序还是应用程序,都离不开I/O这个重要的环节. 相对于低级的I/ ...

  4. Java web对试卷进行单选多选答题进行打分_中考地理:简答题丢分严重,25个标准答题模板,记熟掌握拿满分!...

    哈喽,大家好!非常的感谢大家在百忙之中能够来阅读小编的文章,你们的每一次阅读都是给小编最大的创作动力,在这里小编承诺给带给大家优秀的文章,每一篇都会认认真真的去完成.今天,我们的主题是:中考地理:简答 ...

  5. keil添加hal库_Stm32CubeMX生成的hal库工程加入标准库的库函数的方法

    本帖最后由 seawind1986 于 2017-4-7 22:30 编辑 第一步用Stm32CubeMX创建一个工程并生成Keil MDK的工程,不多赘述. 001.jpg (127.92 KB, ...

  6. 雅思写作,评分标准和模板

    雅思写作两篇作文相关和模板 雅思写作概述 Task1 图表类型 评分标准 要求 文章结构 Introduce写法:照抄题目,增加细节. 扩写introduce的方法 with time period ...

  7. 技术人的标准——简历模板

    求 职 简 历 一份合格的求职简历应该包括以下内容. 姓名.电话(或其他联系方式)等个人资料应该放在简历的最上面,这主要是为了方便用人单位与求职者及时取得联系.紧接着是毕业的学校.专业和时间.下面应该 ...

  8. 嵌入式接口之TIM定时器与NVIC的STM32模板库函数的一些解释

    文章目录 前言 定时基本方法 STM32的时钟 STM的定时器TIM 通用定时器的结构 时基单元 例子讲解 TIM_TimeBaseInit TIM_TimeBaseInitTypeDef TIM_C ...

  9. 基于XDOC云服务的标准公文模板【信函】

    基于XDOC云服务的[信函]公文模板发布了 http://xdoc.aliapp.com/10003.xdoc?_func=pdoc 看看运行效果吧:

最新文章

  1. SAP PM 初级系列6 - 任务清单相关的配置
  2. python-docx 如何获取当前字号_调整字号保护视力?专家有一个更好的建议
  3. 向上类型转换VS向下类型转换
  4. adf.test_在ADF 12.2.1.3中使用基于JSON的REST Web服务
  5. ubuntu 中 ROS 一些报错的解决
  6. CentOS 6.4用源代码安装LNMP环境
  7. clover java,clover-clover软件 v3.4.3 官方版
  8. 基于“中国架构”,为政企数字化转型而生,中国电子云自带“三大光环”
  9. Struts2中Action接收参数的方法
  10. 获取当前程序的相当路径
  11. his提供哪些服务_品牌战略咨询能为企业提供哪些服务
  12. 阿里云云计算 40 CDN的概念
  13. 下载UltraEdit UE 破解版方法
  14. Windows 7 多国语言包(MUI)
  15. win7如何显示文件后缀名 win7怎么显示文件后缀名?
  16. Nordic nRF52832申报要素
  17. 用python写字动画_Duang!用Python来实现唱歌、跳舞、写字、画画?无所不能的pyt
  18. 正运动学及逆运动学求解方法
  19. 06数据分析 - 预测性分析
  20. 基于springboot物业管理系统毕设

热门文章

  1. TX2学习笔记(1)——NVIDIA Jetson TX2 开箱上电
  2. 全球及中国能源期货行业市场现状及未来前瞻报告2022-2028年
  3. 牛客小白月赛6 - J洋灰三角形 - 等比数列、逆元
  4. 解决 Windows 中缺少字体的问题
  5. Linux 错误:delimited by end-of-file (wanted `EOF')
  6. 通信中的计算机技术,计算机技术在通信中的应用研究.pdf
  7. xxx定律 3782
  8. 2005莱卡我型我show里的珍贵友谊
  9. [CTF]-ISCC2022复现
  10. android面试宝典铁道出版社,关于Android开发的面试经验总结