Where to find 'The Art and Science of C' source code? [closed]
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this questionI am stuck in the a programming book 'The Art and Science of C', this book uses custom libraries, like graphics.h. I've tried many ways to find the libraries, I also connected to the Addison-Wesley FTP site mentioned in the appendix of the book, but it doesn't work. Anyone know where to get this libraries?
That book was published in 1995. While the basic C concepts should still be valid, any OS-specific or compiler-specific stuff will likely be quite out of date. (Similarly, the book's FTP site is likely long gone.) According to this link, it looks like graphics.h was part of an old Borland DOS compiler:
graphics.h is a very old library for doing graphics in DOS with Borland C++ 3.x. It's not supported under Windows, and the compiler isn't supported either.
You might try to find an old copy of Borland somewhere (and perhaps a VM in which to run it), or perhaps, find a newer C book.
精彩评论