总结常用C库函数
更新:HHH   时间:2023-1-7


strtoul
strtoul,将参数nptr字符串根据参数base来转换成无符号的长整型数。
strtoul (将字符串转换成无符号长整型数)
相关函数
atof,atoi,atol,strtod,strtol
表头文件
#include<stdlib.h>
定义函数
unsigned long strtoul(const char *nptr,char **endptr,int base);

返回编程语言教程...