gpt4 book ai didi

c - 如何优雅地snprintf?

转载 作者:太空宇宙 更新时间:2023-11-03 23:56:11 24 4
gpt4 key购买 nike

如何优雅地使用 snprintf 函数或标准 C 库中的其他函数,通过 unsigned char 数组的 ASCII 表示来填充内存>?

char data[16];
char dataRepresentation[33];
...
for (i = 0; i < 16; ++i)
snprintf(&dataRepresentation[i * 2], 3, "%02x", (unsigned char) data[i])

这是获取 ASCII 表示的最简单方法吗?

最佳答案

一点点摆弄会更快:

char data[16];char dataRepresentation[2 * sizeof data];static const char master[] = "01234567890abcdef";...for (i = 0; i < sizeof data; ++i){     dataRepresentation[i * 2] = master[0xF&(data[i]>>4)];     dataRepresentation[i * 2 + 1] = master[data[i]&0xF];}

请注意,我实际上并没有编译这段代码。

关于c - 如何优雅地snprintf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6882885/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com