首先我们通过man 3 strtoul命令在linux系统终端查看下该函数的原型如下 #include <stdlib.h>unsigned long int strtoul(const … Continue reading strtoul函数的用法
标签: strtoul
c语言库函数strtoul
描述 C 库函数 unsigned long int strtoul(const char *str, char **endptr, int base) 把参数 str 所指向的字符串根据给定的 ba … Continue reading c语言库函数strtoul