C语言:将16进制字符串转化为int类型值,#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> /* * 将字符转换为数值 * */ int c2i(char ch) { // 如果是数字,则用数字的ASCII码减去48, 如果ch =
```c #include <stdio.h> int main() { char hexString[] = "1A"; // 16进制字符串 int number; sscanf(hexString, "%x", &number); //将16进制字符串转换成数字 printf("转换后的数字为: %d\n", number); return 0; } ``` 在上面的代码中,我们定义了一个16进制字符串`hexString`,并使用`...