gpt4 book ai didi

c - 这段c代码有什么错误

转载 作者:行者123 更新时间:2023-11-30 18:22:23 24 4
gpt4 key购买 nike

main() {
char names [5][20] = {
"rmaesh",
"ram",
"suresh",
"sam"
"ramu"
};
char *t;
t = names[2];
names[2] = names[3];
names[3] = t;

printf(" the array elemsnt are \n");
int i = 0;
for (i = 0; i < 5; i ++)
printf("\n%s", names[i]);
}

我在编译此程序时遇到以下错误

stringarrary.c: In function ‘main’:
stringarrary.c:12:11: error: incompatible types when assigning to type ‘char[20]’ from type ‘char *’
names[2] = names[3];
^
stringarrary.c:13:11: error: incompatible types when assigning to type ‘char[20]’ from type ‘char *’
names[3] = t;

最佳答案

尝试分配给数组是非法的。在这种情况下,您应该使用 strcpy功能。请注意您的char *t;如果你打算交换两个数组,这个想法也不起作用,因为它只指向你现有的字符串之一;一旦你写完names[2] ,该数据消失了。

char t[20];
strcpy(t, names[2]);
strcpy(names[2], names[3]);
strcpy(names[3], t);

此外,"\n%s"应该是"%s\n" - 您希望换行符出现在您打印的内容之后。并且不要忘记#include <stdio.h>#include <string.h> .

关于c - 这段c代码有什么错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23452882/

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