gpt4 book ai didi

c - C语言如何将字符数组转换为二进制数组

转载 作者:太空宇宙 更新时间:2023-11-04 05:56:38 27 4
gpt4 key购买 nike

我知道这个问题好像很熟悉Conversion of Char to Binary in C ,但并不完全相同。我正在将字符数组转换为二进制整数。作为第二步,我试图将它们连接成一个整数数组。我正在将整数转换回字符,以便我可以连接它们。该脚本似乎工作正常,但由于某种原因我无法理解,当我打印整个字符串时,它会在字符串的开头产生一个不可打印的字符。

代码示例:

#include <stdio.h>
#include <string.h>

int main(void) {

char *temp;
char str[2];
char final[32];

for (temp = "LOCL"; *temp; ++temp) {
int bit_index;
for (bit_index = sizeof(*temp)*8-1; bit_index >= 0; --bit_index) {
int bit = *temp >> bit_index & 1;
printf("%d ", bit);

snprintf(str, 2, "%d", bit);
printf("This is test: %s\n",str);
strncat(final , str , sizeof(final) );
}
printf("\n");
}
printf("This is the array int: %s\n",final);

return 0;
}

有人可以帮助我了解我哪里出错了吗?

在此先感谢您花时间和精力帮助我。

最佳答案

您只是忘记了初始化 final,所以当您运行代码时,您将二进制字符串连接到 final 中的任何垃圾上。您还需要在 final 中允许一个额外的字符(以容纳 '\0' 终止符)。变化:

char final[32];

到:

char final[33] = "";

关于c - C语言如何将字符数组转换为二进制数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26349236/

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