gpt4 book ai didi

c - 仅打印数组的第一个字符

转载 作者:行者123 更新时间:2023-12-02 08:40:35 25 4
gpt4 key购买 nike

int
cycle(n) {
char *s3 = "Different";
int i, length;
length = strlen(s3)
printf("%s\n", s3);
for (i=0; i<length; i++) {
printf("%s\n", &s3[i]);

}
return 0;
}

我试图在每个换行符上一次打印一个字符,但输出看起来像这样 -

C: Different   
C: ifferent
C: fferent
ect.

如何让它一次只输出一个字符?示例(C:D、C:i、C:f 等)

最佳答案

你应该改变:

printf("%s\n", &s3[i]);

printf("%c\n", s3[i]);

前者打印string,后者打印char

关于c - 仅打印数组的第一个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16867612/

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