unresolved external symbol 是什么意思?C++程序
源程序是这样的?#include<iostream.h>structNODE{intdata;NODE*next;};NODE*head=NULL;intdata[6]=...
源程序是这样的?
#include <iostream.h>
struct NODE
{
int data;
NODE *next;
};
NODE *head = NULL;
int data[6] = {25,41,17,98,5,67};
void InsertList(NODE **head, int aData, int bData);
void DeleteList(NODE **head, int aData);
void OutputList(NODE *head);
void main()
{
for (int i=0; i<6; i++)
InsertList(&head, data[0], data[i]);
OutputList(head);
DeleteList(&head, 98);
DeleteList(&head, 41);
OutputList(head);
}
请各位大侠指教啊 展开
#include <iostream.h>
struct NODE
{
int data;
NODE *next;
};
NODE *head = NULL;
int data[6] = {25,41,17,98,5,67};
void InsertList(NODE **head, int aData, int bData);
void DeleteList(NODE **head, int aData);
void OutputList(NODE *head);
void main()
{
for (int i=0; i<6; i++)
InsertList(&head, data[0], data[i]);
OutputList(head);
DeleteList(&head, 98);
DeleteList(&head, 41);
OutputList(head);
}
请各位大侠指教啊 展开
2个回答
展开全部
就是该标识符没有定义。
main.obj : error LNK2019: 无法解析的外部符号 "void __cdecl DeleteList(struct NODE * *,int)" (?DeleteList@@YAXPAPAUNODE@@H@Z),该符号在函数 _main 中被引用
main.obj : error LNK2019: 无法解析的外部符号 "void __cdecl OutputList(struct NODE *)" (?OutputList@@YAXPAUNODE@@@Z),该符号在函数 _main 中被引用
main.obj : error LNK2019: 无法解析的外部符号 "void __cdecl InsertList(struct NODE * *,int,int)" (?InsertList@@YAXPAPAUNODE@@HH@Z),该符号在函数 _main 中被引用
E:\Documents\Visual Studio 2005\Projects\formula\Debug\formula.exe : fatal error LNK1120: 3 个无法解析的外部命令
main.obj : error LNK2019: 无法解析的外部符号 "void __cdecl DeleteList(struct NODE * *,int)" (?DeleteList@@YAXPAPAUNODE@@H@Z),该符号在函数 _main 中被引用
main.obj : error LNK2019: 无法解析的外部符号 "void __cdecl OutputList(struct NODE *)" (?OutputList@@YAXPAUNODE@@@Z),该符号在函数 _main 中被引用
main.obj : error LNK2019: 无法解析的外部符号 "void __cdecl InsertList(struct NODE * *,int,int)" (?InsertList@@YAXPAPAUNODE@@HH@Z),该符号在函数 _main 中被引用
E:\Documents\Visual Studio 2005\Projects\formula\Debug\formula.exe : fatal error LNK1120: 3 个无法解析的外部命令
威孚半导体技术
2024-08-19 广告
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层...
点击进入详情页
本回答由威孚半导体技术提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询