gpt4 book ai didi

c++ - 调用该函数时出现此错误 [Error] incompromed types in assignment of 'char' to 'char [40]'

转载 作者:行者123 更新时间:2023-11-30 21:34:09 26 4
gpt4 key购买 nike

我在函数中返回 *res (它是连接字符串后的值结果字符串)。当我调用此函数并将结果存储在 char 数组中时,它会在将 'char' 分配给 'char [40]' 时给出错误 [Error] 不兼容的类型.我想在函数中连接两个字符串并从函数返回连接的字符串。请帮助解决这个问题

#include<iostream>
#include<stdio.h>

using namespace std;

int main(){

char strConcat(char *,char *);
char input1[10],input2[12],resultantString[40];
cout<<"Enter the 1st String=";
cin.getline(input1,10);
cout<<"Enter the 2nd String=";
cin.getline(input2,10);
//faulty code
resultantString=strConcat(input1,input2);
cout<<resultantString;
}


// st1 means String1 and St2 means string2 which we want to concat.

char strConcat(char *st1,char *st2)
{
char *res;
while(*st1!='\0')
{
*res=*st1;
*st1++;
*res++;
}

while(*st2!='\0')
{
*res=*st2;
*st2++;
*res++;
}
*res='\0';

return *res;

}

最佳答案

首先,删除 using namespace std;,它是 a bad habit .

接下来,将函数声明 void strConcat(char *,char *); 移出 main 并使其与定义的类型相同,这是你的错误,你声明 strConcat 首先返回 void,但随后定义它返回 char,编译器仍然认为它返回 void,因此当您试图给它分配一些东西,编译器会提示。

下一步,让 main 返回 int,您当前的定义无效。

接下来,缩进你的代码,这样不仅编译器可以读取它,其他人也可以读取它。

这里最重要的提示是,删除所有这些静态大小的数组和自制的 strCat 函数并使用 std::string 及其 operator+ 用于串联。

关于c++ - 调用该函数时出现此错误 [Error] incompromed types in assignment of 'char' to 'char [40]',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41308940/

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