C语言putenv()函数:用于改变或增加环境变量的内容 C语言putenv()函数:用于改变或增加环境变量的内容函数名:putenv头文件:<stdlib.h>函数原型:void*putenv(char*name);功能:用于改变或增加环境变量的内容参数:char*name为环境变量…… stdlib.h头文件 2022年04月16日 61 点赞 0 评论 114484 浏览
C语言ispunct()函数: 判断字符是否为标点符号 C语言ispunct()函数: 判断字符是否为标点符号函数名:ispunct头文件:<ctype.h>函数原型: intispunct(intch);功能: 判断字符是否为标点符号参数:in…… ctype.h头文件 2022年03月04日 177 点赞 0 评论 104615 浏览
C语言ldexp()函数:计算指定的2^exp倍数 C语言ldexp()函数:计算指定的2^exp倍数函数名:ldexp头文件:<math.h>功能:计算指定的2^exp倍数函数原型:doubleldexp(doublevalue,intexp);参数:doublevalu…… math.h头文件 2022年05月09日 202 点赞 0 评论 93415 浏览
C语言setjmp()函数:非局部转移进程 C语言setjmp()函数:非局部转移进程函数名:setjmp头文件:<setjmp.h>函数原型:intsetjmp(jmp_bufenv);功能:非局部转移进程,设置缓冲区来保存系统堆栈的内容参数:env&am…… setjmp.h头文件 2022年05月06日 233 点赞 0 评论 96230 浏览
C语言freopen()函数:替换一个流 C语言freopen()函数:替换一个流函数名:freopen头文件:<stdio.h>函数原型:FILE*freopen(char*filename,char*type,FILE*stream);功能:替换一个…… stdio.h头文件 2022年02月07日 202 点赞 0 评论 81304 浏览
C语言strnset()函数:指定字符串的前几个字符都设为指定字符 C语言strnset()函数:指定字符串的前几个字符都设为指定字符函数名:strnset头文件:<string.h>函数原型:char*strnset(char*str,charch,unsignedn);功能:指定字符串的前几个字符都设…… string.h头文件 2022年04月13日 105 点赞 0 评论 97687 浏览
C语言atan()函数:求正切值为 x 的弧度数 C语言atan()函数:求正切值为 x 的弧度数函数名:atan头文件:<math.h>函数原型:doubleatan(doublex);功能:求正切值为x的弧度数参数: doublex&nbs…… math.h头文件 2022年05月30日 98 点赞 0 评论 98559 浏览
C语言printf()函数:产生格式化输出的函数 C语言printf()函数:产生格式化输出的函数函数名:printf头文件:<stdio.h>函数原型:intprintf(char*format...);功能:产生格式化输出的函数参数:char*format...&a…… stdio.h头文件 2022年03月04日 132 点赞 0 评论 98313 浏览
C语言itoa()函数:用于把整数转换成字符串 C语言itoa()函数:用于把整数转换成字符串函数名:itoa头文件:<stdlib.h>函数原型:char*itoa(inti,char*s,intradix);功能:用于把整数转换成字符串参数:inti&n…… stdlib.h头文件 2022年03月14日 96 点赞 0 评论 138808 浏览
C语言isalpha()函数:判断字符是否为英文字母 C语言isalpha()函数:判断字符是否为英文字母函数名:isalpha头文件:<ctype.h>函数原型: intisalpha(intch);功能: 判断字符是否为英文字母参数:in…… ctype.h头文件 2022年03月28日 93 点赞 0 评论 133970 浏览