gpt4 book ai didi

printf - 如何使用 printf 在字符串末尾附加空格?

转载 作者:行者123 更新时间:2023-12-04 18:48:38 27 4
gpt4 key购买 nike

如何使用 printf 在字符串末尾附加空格?

我找不到任何在右侧附加空格的示例。 A similar question我发现使用 printf改为在字符串的左侧添加空格。

最佳答案

使用负数左对齐(即“填充”到右侧)。

#include <stdio.h>
int main() {
const char *s = "hello";
printf("%30sworld\n", s);
printf("%-30sworld\n", s);
}

这打印
                         helloworld
hello world

关于printf - 如何使用 printf 在字符串末尾附加空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9676402/

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