-
大小: 220KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-05-20
- 语言: 其他
- 标签: | Programming Abstractions in C
资源简介
Programming Abstractions in C 的源码,实在难找,还是自己不会用股沟?败毒?
呵呵,后来终于找到了。
不过我忘记链接了,不然发上来了。
代码片段和文件信息
/*
* File: addlist.c
* ---------------
* This program adds a list of numbers. The end of the
* input is indicated by entering a sentinel value which
* is defined by setting the value of the constant Sentinel.
*/
#include
#include “genlib.h“
#include “simpio.h“
/*
* Constants
* ---------
* Sentinel -- Value that terminates the input list
*/
#define Sentinel 0
/* Main program */
main()
{
int value total;
printf(“This program adds a list of numbers.\n“);
printf(“Use %d to signal the end of list.\n“ Sentinel);
total = 0;
while (TRUE) {
printf(“ ? “);
value = GetInteger();
if (value == Sentinel) break;
total += value;
}
printf(“The total is %d\n“ total);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 7458 2010-05-26 22:23 第十章\checkout.c
文件 19 2010-05-26 22:23 第十章\dstack.c
文件 2589 2010-05-26 22:23 第十章\qarray.c
文件 2329 2010-05-26 22:23 第十章\qlist.c
文件 2412 2010-05-26 22:23 第十章\qtest.c
文件 2957 2010-05-26 22:23 第十章\queue.h
文件 3461 2010-05-26 22:23 第十章\rpncalc.c
文件 10928 2010-05-26 22:23 第十章\scanadt.c
文件 7862 2010-05-26 22:23 第十章\scanadt.h
文件 1839 2010-05-26 22:23 第十章\stack.c
文件 3186 2010-05-26 22:23 第十章\stack.h
目录 0 2010-05-26 22:23 第十章\
文件 2397 2010-05-26 22:22 第九章\arraybuf.c
文件 2538 2010-05-26 22:22 第九章\buffer.h
文件 2173 2010-05-26 22:22 第九章\editor.c
文件 3125 2010-05-26 22:22 第九章\listbuf.c
文件 2785 2010-05-26 22:22 第九章\stack.c
文件 3182 2010-05-26 22:22 第九章\stack.h
文件 2467 2010-05-26 22:22 第九章\stackbuf.c
目录 0 2010-05-26 22:22 第九章\
文件 3478 2010-05-26 22:21 第八章\rpncalc.c
文件 4137 2010-05-26 22:21 第八章\scanadt.c
文件 5000 2010-05-26 22:21 第八章\scanadt.h
文件 2785 2010-05-26 22:21 第八章\stack.c
文件 3186 2010-05-26 22:21 第八章\stack.h
文件 616 2010-05-26 22:21 第八章\testscan.c
目录 0 2010-05-26 22:21 第八章\
文件 2471 2010-05-26 22:20 第七章\msort.c
文件 1845 2010-05-26 22:20 第七章\qsort.c
文件 656 2010-05-26 22:20 第七章\sort.h
文件 1085 2010-05-26 22:20 第七章\ssort.c
............此处省略175个文件信息
相关资源
- Programming with Transactions SSD7Programming
- QQ群成员批量提取工具| v0710免费版.
- 类型理论与函数式编程Type Theory and
- WDM-PON组网方案
- multisim正弦波方波三角波的函数发生器
- 2.1万近义词.SEO伪原创|火车头近义词替
- 正规式1(0|1)*101相应的DFA.doc
- 主题爬虫|定向爬虫
- 实战Linux编程精髓源代码
- 极品时刻表|极品列车时刻表 2010.12.
- Programming in Haskell(PDF)
- The.Rust.Programming.Language.(Covers.Rust.2
- RD ∗,| V cb |和形状因子之间的重
- LED照明与功率因数之间的关系研究
- LinuxSystemProgramming+Linux系统编程中英文
- 编程字体 consola 和 courier new
- Bitter_LabView-Advanced+Programming+Techniques
- 论文研究 - 结合模糊逻辑和功能共振
- DLL注入器---歪歪加强版万能DLL注入器
- DirectX3D|DirectX3D支持库
- A Practical Guide to Linux Commands Editors an
- 和| | NNLO的W衰减确定和CKM一致性测试
- 论文研究 - 高校教师软能力指标体系
- Programming Language Pragmatics Fourth Edition
- 小型DC/DC开关电源容性负载的研究
- 小型DC/DC开关电源的容性负载研究
- Tkinter GUI Programming By Example 无水印转化
- 用于Windows平板电脑z3735平台z8300 z835
- opengl es 2.0 programming guide
- UNIX Network Programming Volume 1 3rd (The S
评论
共有 条评论