gpt4 book ai didi

c - 在 C 中打印字符串的一部分

转载 作者:太空狗 更新时间:2023-10-29 16:36:47 26 4
gpt4 key购买 nike

有没有办法只打印字符串的一部分?

例如,如果我有

char *str = "hello there";

有没有办法只打印 "hello",记住我要打印的子字符串是可变长度的,并不总是 5 个字符?

我知道我可以使用 for 循环和 putchar 或者我可以复制数组然后添加一个空终止符,但我想知道是否有更优雅的方式?

最佳答案

试试这个:

int length = 5;
printf("%*.*s", length, length, "hello there");

关于c - 在 C 中打印字符串的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4841219/

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