实例介绍
方便,快捷的下载。C语言的科学与艺术的源代码和库函数。不需要积分,随便下!谢谢大家的支持!
【实例截图】
【核心代码】
4744302542869870616.zip
├── documents
│ ├── changes.txt
│ ├── errata.txt
│ ├── graphics.txt
│ ├── loopexit.txt
│ ├── preface.txt
│ ├── README
│ ├── ugradtas.txt
│ └── usingc.txt
├── mac-think-c
│ ├── cslib.hqx
│ ├── exception.c
│ ├── exception.h
│ ├── extgraph.h
│ ├── gcalloc.h
│ ├── genlib.c
│ ├── genlib.h
│ ├── graphics.c
│ ├── graphics.h
│ ├── random.c
│ ├── random.h
│ ├── README
│ ├── simpio.c
│ ├── simpio.h
│ ├── strlib.c
│ └── strlib.h
├── pc-borland
│ ├── cslib.exe
│ ├── dos
│ │ ├── exceptio.c
│ │ ├── genlib.c
│ │ ├── graphics.c
│ │ ├── random.c
│ │ ├── simpio.c
│ │ └── strlib.c
│ ├── include
│ │ ├── exceptio.h
│ │ ├── extgraph.h
│ │ ├── gcalloc.h
│ │ ├── genlib.h
│ │ ├── graphics.h
│ │ ├── random.h
│ │ ├── simpio.h
│ │ └── strlib.h
│ ├── README
│ ├── tools
│ │ ├── dos.mak
│ │ ├── install.bat
│ │ ├── prefix.mak
│ │ └── windows.mak
│ └── windows
│ ├── exceptio.c
│ ├── genlib.c
│ ├── graphics.c
│ ├── random.c
│ ├── simpio.c
│ └── strlib.c
├── pc-turbo
│ ├── CSLIB.EXE
│ ├── CSLIB.LIB
│ ├── exceptio.c
│ ├── exceptio.h
│ ├── extgraph.h
│ ├── gcalloc.h
│ ├── genlib.c
│ ├── genlib.h
│ ├── graphics.c
│ ├── graphics.h
│ ├── hello.c
│ ├── HELLO.PRJ
│ ├── random.c
│ ├── random.h
│ ├── README
│ ├── simpio.c
│ ├── simpio.h
│ ├── strlib.c
│ └── strlib.h
├── preface
├── programs
│ ├── 02-Learning-by-Example
│ │ ├── add2.c
│ │ ├── add2f.c
│ │ ├── ave2f.c
│ │ ├── cmtofeet.c
│ │ ├── greeting.c
│ │ ├── hello.c
│ │ ├── inchtocm.c
│ │ └── Makefile
│ ├── 03-Problem-Solving
│ │ ├── add10.c
│ │ ├── addlist.c
│ │ ├── balance1.c
│ │ ├── balance2.c
│ │ ├── balance3.c
│ │ ├── balance4.c
│ │ ├── count10.c
│ │ ├── Makefile
│ │ └── roses.c
│ ├── 04-Statement-Forms
│ │ ├── addlist.c
│ │ ├── cardrank.c
│ │ ├── digitsum.c
│ │ ├── leapyear.c
│ │ ├── liftoff.c
│ │ ├── Makefile
│ │ ├── oddeven.c
│ │ ├── signtest.c
│ │ └── timestab.c
│ ├── 05-Functions
│ │ ├── c2ftable.c
│ │ ├── calendar.c
│ │ ├── combine.c
│ │ ├── fact.c
│ │ ├── gameloop.c
│ │ ├── iseven.c
│ │ └── Makefile
│ ├── 06-Algorithms
│ │ ├── euclid.c
│ │ ├── gcd.c
│ │ ├── Makefile
│ │ ├── nsqrt.c
│ │ ├── primes1.c
│ │ ├── primes2.c
│ │ ├── primes3.c
│ │ ├── tsqrt.c
│ │ └── zeno.c
│ ├── 07-Graphics
│ │ ├── arc1.c
│ │ ├── arc2.c
│ │ ├── drawbox.c
│ │ ├── drawcbox.c
│ │ ├── drawcirc.c
│ │ ├── house.c
│ │ ├── Makefile
│ │ └── oneline.c
│ ├── 08-Random-Numbers
│ │ ├── cointest.c
│ │ ├── craps.c
│ │ ├── dicetest.c
│ │ ├── Makefile
│ │ ├── random.c
│ │ ├── random.h
│ │ └── randtest.c
│ ├── 09-Strings
│ │ ├── acronym.c
│ │ ├── addlist.c
│ │ ├── lastchar.c
│ │ ├── linelen.c
│ │ ├── Makefile
│ │ ├── ncopies.c
│ │ ├── protect.c
│ │ ├── repfirst.c
│ │ ├── reverse.c
│ │ └── secondh.c
│ ├── 10-Modular-Development
│ │ ├── Makefile
│ │ ├── piglatin.c
│ │ ├── scanner.c
│ │ └── scanner.h
│ ├── 11-Arrays
│ │ ├── countlet.c
│ │ ├── gymjudge.c
│ │ ├── Makefile
│ │ ├── reverse.c
│ │ └── testrev.c
│ ├── 12-Sorting
│ │ ├── findcoin.c
│ │ ├── Makefile
│ │ ├── mileage2.c
│ │ ├── mileage.c
│ │ ├── sort.c
│ │ ├── sort.h
│ │ └── testsort.c
│ ├── 13-Pointers
│ │ ├── hours.c
│ │ ├── Makefile
│ │ ├── sort.c
│ │ ├── sort.h
│ │ └── testsort.c
│ ├── 14-Strings-Revisited
│ │ ├── invert.c
│ │ └── Makefile
│ ├── 15-Text-Files
│ │ ├── copyfile.c
│ │ ├── elements.c
│ │ ├── elements.dat
│ │ ├── hamlet.txt
│ │ ├── juliet.txt
│ │ ├── linecopy.c
│ │ ├── Makefile
│ │ ├── remcom.c
│ │ ├── showfile.c
│ │ ├── ucfile.c
│ │ └── witches.txt
│ ├── 16-Records
│ │ ├── advent.dat
│ │ ├── cs.dat
│ │ ├── empdb.c
│ │ ├── employee.c
│ │ ├── Makefile
│ │ ├── point.c
│ │ └── teach.c
│ ├── 17-Looking-Ahead
│ │ ├── fact.c
│ │ ├── Makefile
│ │ ├── permute.c
│ │ ├── power.c
│ │ ├── qtest.c
│ │ ├── queue.c
│ │ ├── queue.h
│ │ ├── sort.c
│ │ ├── sort.h
│ │ └── testsort.c
│ ├── archive
│ │ ├── programs.exe
│ │ ├── programs.hqx
│ │ └── programs.shar
│ └── README
├── README
├── simplified
│ ├── genlib.c
│ ├── genlib.h
│ ├── graphics.c
│ ├── graphics.h
│ ├── Makefile
│ ├── random.c
│ ├── random.h
│ ├── README
│ ├── simpio.c
│ ├── simpio.h
│ ├── strlib.c
│ └── strlib.h
├── standard
│ ├── exception.c
│ ├── exception.h
│ ├── gcalloc.h
│ ├── genlib.c
│ ├── genlib.h
│ ├── graphics.c
│ ├── graphics.h
│ ├── Makefile
│ ├── random.c
│ ├── random.h
│ ├── README
│ ├── simpio.c
│ ├── simpio.h
│ ├── standard.shar
│ ├── strlib.c
│ └── strlib.h
├── unix-xwindows
│ ├── config.csh
│ ├── cslib.shar
│ ├── exception.c
│ ├── exception.h
│ ├── extgraph.h
│ ├── gcalloc.h
│ ├── genlib.c
│ ├── genlib.h
│ ├── glibrary.c
│ ├── glibrary.h
│ ├── graphics.c
│ ├── graphics.h
│ ├── Makefile
│ ├── random.c
│ ├── random.h
│ ├── README
│ ├── simpio.c
│ ├── simpio.h
│ ├── strlib.c
│ ├── strlib.h
│ ├── xcompat.c
│ ├── xcompat.h
│ ├── xdisplay.c
│ ├── xdisplay.h
│ ├── xmanager.c
│ └── xmanager.h
└── VERSION
29 directories, 248 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论