gpt4 book ai didi

c - 将指针字符打印为十六进制

转载 作者:太空宇宙 更新时间:2023-11-04 07:34:01 25 4
gpt4 key购买 nike

#include <stdio.h>

int main(){
char *c="";
printf("Input: ");
scanf_s("%c", c);
printf("%x", *c);
}

我想输入几个字符,然后将整个字符串输出为十六进制值。我该怎么做?

最佳答案

您需要一个缓冲区,而不是一个字符串常量来读入。此外,永远不要使用任何 *scanf 函数,也永远不要使用任何 *_s 函数。

编写程序的正确方法是这样的:

int
main(void)
{
char line[80];
char *p;

fputs("Input: ", stdout);
fgets(line, sizeof line, stdin);

for (p = line; *p; p++)
printf("%02x", *p);

putchar('\n');
return 0;
}

...但我不确定您所说的“将整个字符串输出为十六进制值”到底是什么意思,所以这可能不是您想要的完全

关于c - 将指针字符打印为十六进制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10544053/

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