我正在编写一个 hex-to-base64 编码器作为练习,因为我是 C 新手。没关系为什么代码没有按照我想要的方式工作,为什么我的旁边会出现这些克拉字母组合输出?
const char * hex_to_base64(const char * s) {
int i;
for(i = 0; i < strlen(s)/3; i = i + 3) {
char str[3];
str[0] = s[i];
str[1] = s[i+1];
str[2] = s[i+2];
printf("%s\n", str);
}
return NULL;
}
int main() {
const char * x = "4453def6d206b696c6c696e6720796f757220627261696e206c696b652061222226f789436f6e6f5573206dabb7368726fa4b2";
hex_to_base64(x);
return 0;
}
我得到这个输出:
445
3de^C
f6d^F
206
b69^L
6c6^O
c69^R
6e6^U
720^X
796^[
f75^^
722!
有人可以解释为什么我在 printf 末尾得到克拉字母组合吗?