C标准库之类型转换函数 strtoul
本帖最后由 墨血 于 2014-9-14 12:53 编辑功能:
strtoul 函数用于将字符串转换为伍符号长整型数。
函数原型:
unsigned long strtoul( const char* nptr, char **endptr, int base );
参数:
参数说明
nptr要转换的字符串
endptr指向 停止转换的字符串指针
base使用的基底
返回值:
无符号长整型数。
要求:
函数需要的头文件
strtoul<stdlib.h>
示例:#include<stdio.h>
#include<stdlib.h>
int main()
{
unsigned long x;
char str[] = "123asd";
char ss[] = "100";
char sss[] ="-100";
char* p;
x= strtoul(str,&p,10); //将字符串按10进制转换
printf("%u%s\n",x,p);
x = strtoul(ss,&p,10); //将字符串按10进制转换
printf("%u%s\n",x,p);
x = strtoul(ss,&p,16); //将字符串按16进制转换
printf("%u%s\n",x,p);
x = strtoul(ss,&p,2);
printf("%u%s\n",x,p);
x = strtoul(sss,&p,10); //转换负数时出现溢出
printf("%u%s\n",x,p);
return 0;
}
结果:
页:
[1]