gcc 编译器抱怨 char* 测试中的 test[0] 错误;

发布于 2024-12-16 13:51:24 字数 192 浏览 0 评论 0原文

我只是这样写:

char* test="test";
printf("%s",test[0]);

它说seg failure; 然后我改为 printf("%s",&test[0]); 错误消失了 但这不是我想要的; 控制台打印:“测试” 如何从该指针获取值“t”?

I simply write this:

char* test="test";
printf("%s",test[0]);

it says seg fault;
then I change to
printf("%s",&test[0]); the error gone
But this is not what I want;
the console print: "test "
how to get just value "t" from that pointer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生生漫 2024-12-23 13:51:24

如果您只需要 t,您应该这样做:

printf("%c",test[0]);

格式 %c 将打印单个 char

%s 将打印整个以 null 结尾的字符串。

If you want just the t, you should do:

printf("%c",test[0]);

The format %c, will print a single char.

%s will print the entire null-terminated string.

誰認得朕 2024-12-23 13:51:24

您应该使用 %c 而不是 %s,因为 %s 采用 char * 并打印到 \0。 %c 取一个字符。

You should use %c instead of %s as %s takes a char * and prints until \0. %c takes one single character instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文