gpt4 book ai didi

c++ - cpp 程序中出现意外错误?

转载 作者:太空宇宙 更新时间:2023-11-04 05:40:38 24 4
gpt4 key购买 nike

我正在研究 C++,以下是我的代码:

测试.h

char[] defaultSurname  = "salunke";
void in_dev(const char* name, char* surname = defaultSurname );

测试.cpp

#include "test.h"
#include <iostream>
using namespace std;

void in_dev(const char* name, char* surname)
{
cout <<" surname id "<< surname << endl;
}

int main()
{
in_dev("Balaji", "Patil");
return 0;
}

但它给出了以下编译错误:

test.h:1: error: expected unqualified-id before '[' token
test.h:9: error: 'defaultSurname' was not declared in this scope

如何解决此错误?

最佳答案

char[] defaultSurname  = "salunke";

应该是:

char defaultSurname[]  = "salunke";

如有疑问,请使用 clockwise spiral rule 它应该有帮助。

关于c++ - cpp 程序中出现意外错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15195814/

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