作者自己写的库怎么不能运行?_C语言的科学和艺术书评-查字典图书网
查字典图书网
当前位置: 查字典 > 图书网 > 编程 > C语言的科学和艺术 > 作者自己写的库怎么不能运行?
vancross C语言的科学和艺术 的书评 发表时间:2009-06-20 22:06:08

作者自己写的库怎么不能运行?

我是初学者,我到网上下载了本书的源代码,运行后,我的TURBO C总是提示出错,主要在于作者自己写的库无法识别,
比如#include "simpio.h",
怎么回事?

展开全文
有用 0 无用 1

您对该书评有什么想说的?

发 表

推荐文章

猜你喜欢

附近的人在看

推荐阅读

拓展阅读

对“作者自己写的库怎么不能运行?”的回应

杳杳 2013-08-03 20:39:48

If you are not using a Unix system, you should instead adopt the
following more general approach, filling in details as appropriate for
your own hardware and software platform:

1. Use FTP to copy all of the files in the standard directory to a new
working directory on your machine.

2. Copy the .h files from this directory into the standard #include
path used by your compiler.

3. Compile each of the source files (exception.c, genlib.c, graphics.c,
random.c, simpio.c, and strlib.c) to produce the corresponding
object file.

4. Combine the object files together to produce a library file. The
steps required to do so vary substantially from system to system.

看看再说 2011-01-30 01:18:53

看readme文档。

simpzan 2010-03-10 12:07:27

书后有自定义库文件代码清单,把那个加进去就可以了

PowerBoy 2010-01-30 16:40:27

源码在哪儿下?

song 2009-07-20 13:31:34

你编译了么?