大神帮下忙。。。。。。。。。。
正在学C语言的科学和艺术这本书,里面的一个例题,在vc++6.0上执行#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("2st number?");
n2=GetInteger();
total=n1+n2;
printf("The total is %d.\n",total);
}
编译没有错误,执行的时候显示这个,什么原因给看下,谢了
是不是由于头文件没包含进去,书中附带有库函数的源程序,带不知道怎么配置进去。用的编程软件是VC++6.0
页:
[1]