博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xtoi (Hex to Integer) C function - Nanoseconds Network
阅读量:6680 次
发布时间:2019-06-25

本文共 392 字,大约阅读时间需要 1 分钟。

xtoi (Hex to Integer) C function

Tuesday, June 20, 2006 6:06 PM by

You mean "int to hex"?

Use sprintf:

char* output;

unsigned int value = 43981;
sprintf(output, "%X", value);

Edit:

From the comment below the page, you can see the C way of decoding hex from string using function:
unsigned int hex = 0;
const char* hexstr = "ABCD";
sscanf(hexstr, "%X", &hex);
printf("%s = %d\n", hexstr, hex);

转载地址:http://oynao.baihongyu.com/

你可能感兴趣的文章
Android中的IPC方式
查看>>
计算机网络基础知识(待补充)
查看>>
工作5年半了,最近准备做一些工作的小结了
查看>>
zabbix监控tengine upstream状态
查看>>
新手教程
查看>>
mysql-binlog日志恢复数据库
查看>>
python之使用单元测试框架unittest执行自动化测试
查看>>
java反射学习笔记
查看>>
day10-多进程的基本语法
查看>>
凡客和锤子
查看>>
设计模式(5)--单例模式
查看>>
VS2015 RTM与ASP.NET 5 RC1之坑
查看>>
@RequestMapping的Ant风格URL
查看>>
pitch yaw roll是什么
查看>>
python生成器 Generator
查看>>
Daily scrum[2013.12.09]
查看>>
mysql 切换数据库方案
查看>>
深浅copy
查看>>
网络osi
查看>>
WINREG.H 编译出错
查看>>