求助自定义的符号
/*
* File: add2.c
* ------------
* This program reads in two numbers, adds them together,
* and prints their sum.
*/
#include <stdio.h>
#include "genlib.h"
#include "simpio.h"
main()
{
int n1, n2, total;
printf("This program adds two numbers.\n");
printf("1st number? ");
n1 = GetInteger();
printf("2nd number? ");
n2 = GetInteger();
total = n1 + n2;
printf("The total is %d.\n", total);
}
*/未定义的符号 '_GetInteger' 在模块 add2.c/*
但是书上说 函数GetInteger 是simpio库中的一部分,用于从用户处读入整数,调用函数
GetInteger 时,程序等待用户用键盘输入一个整数的数值。用户输入完毕并按回车键后,该数值作为函数GetInteger的结果返回程序。在程序设计的术语中,称GetInteger返回(returm)用户键入的数值。总的来说,这个赋值语句的作用就是调用GetInteger函数,让用户输入的数值并最终将GetInteger返回的数值存储于变量n1中。
并且 simpio。h等多个库 都是从次书给的网站上下的
还有就是对定义符号 我还不是很了解 请高手帮忙 help me!
这个是书上给带的原代码 已经削剪了例题要不太大了 里面有好几个文件夹 都带有相同的函数库 请各位帮帮忙