gpt4 book ai didi

c - 打印字符串时出现意外结果

转载 作者:行者123 更新时间:2023-11-30 21:08:45 24 4
gpt4 key购买 nike

我创建了一个程序,在其中声明了两个 char 类型的数组。一个将存储字符串,另一个将存储反转的字符串。但是当我打印第二个数组时,它会显示一些意外的结果。

#include<stdio.h>

main(){
char a[] = "Sahib";
char b[5];
int i = 0;
int j,k = 0;
char c='a';
while(c!='\0'){
c = a[i];
i++;
}
i -= 2;
for(j=i;j<=0;j--){
b[k] = a[j];
k++;
}

printf("The reversed character is %s",b);
}

最佳答案

试试这个:

#include <stdio.h>

int main(void){
char a[] = "Sahib";
char b[sizeof a];
int i = 0;
int j,k = 0;
char c;

while((c = a[i]) != '\0'){
i++;
}
for(j = --i; j>=0; --j){
b[k++] = a[j];
}
b[k] = '\0';

printf("The reversed character is %s\n", b);
return 0;
}

关于c - 打印字符串时出现意外结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37090226/

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