最佳答案
我有:
uint8 buf[] = {0, 1, 10, 11};
我想将字节数组转换为字符串,这样我就可以使用 printf 打印字符串:
printf("%s\n", str);
并获得(不需要冒号) :
"00:01:0A:0B"
如果你能帮忙,我将不胜感激。