求解!!关键性问题!!
小弟在《c语言的科学与艺术》中看到下面这段程序:#include
#include
#include
main()
{
int n1,n2,total;
printf("thisprogram adds two numbers.\n");
printf("1st number?");
n1 = GetInteger();
printf("2nd number?");
n2 = GetInteger();
total=n1+n2;
printf("the total is %d.\n",total);
}
点击运行的时候出现错误,如下所示。请各给高手指点错误出现在哪里,具体该怎么解决。
1>------ 已启动生成: 项目: bb, 配置: Debug Win32 ------
1>生成启动时间为 2012/11/29 9:57:49。
1>InitializeBuildStatus:
1> 正在创建“Debug\bb.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
1>ClCompile:
1> add2.c
1>ManifestResourceCompile:
1> 所有输出均为最新。
1>add2.obj : error LNK2001: 无法解析的外部符号 _GetInteger
1>C:\Users\d\Documents\Visual Studio 2010\Projects\bb\Debug\bb.exe : fatal error LNK1120: 1 个无法解析的外部命令
1>
1>生成失败。
1>
1>已用时间 00:00:01.77
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========