标签: c
我基本上只想采用8个字符的ASCII值003fc000并将其转换为字符十六进制。
003fc000
答案 0 :(得分:4)
您的意思是将其转换为十六进制整数?
int num = (int)strtol("003fc000", NULL, 16);