本文介绍了用C有效地转换为十六进制字符串转换为整数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在C,什么是十六进制数字字符串转换成二进制最有效的方式unsigned int类型
或无符号长
?
In C, what is the most efficient way to convert a string of hex digits into a binary unsigned int
or unsigned long
?
例如,如果我有 0xFFFFFFFE
,我希望有一个 INT
用base10值 4294967294
。
For example, if I have 0xFFFFFFFE
, I want an int
with the base10 value 4294967294
.
推荐答案
您想或的。又见
这篇关于用C有效地转换为十六进制字符串转换为整数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!