标签:c语言
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char* ch = "ff000000";
unsigned i = strtoul(ch, NULL, 16);
printf("%u\n", i);
return 0;
}
strtoul 是将字符串转换为无符号长整型
strtol 是将字符串转换为整型
可以查看微软的帮助文档
参照百度:
http://baike.baidu.com/view/1874375.htm
标签:c语言
原文地址:http://blog.csdn.net/yueyansheng2/article/details/24721337