-
大小: 220KB文件类型: .zip金币: 2下载: 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个文件信息
相关资源
- wpe封包拦截分析工具|封包分析|发包和
- ASUS华硕K45VD|A45VD主板驱动程序 v9.3.0
- Game Programming Patterns.pdf
- Online pricing with bundle discounts and coupo
- 有源电力滤波器在舰船电网谐波补偿
- 电源EMI滤波器插入损耗
- IT6802 Programming Guide
-
高清彩版 Programming in ob
jective-C(6 - ASUS华硕K45VD|A45VD USB3.0驱动程序 v1.0.
- TH upstream-inhibited ARHGAP12 subnetwork for
- BoW|Pyramid BoW+SVM进行图像分类
- 淘宝注册软件|谷跑淘宝注册软件v1.
- Introduction to Stochastic Dynamic Programming
- iOS Programming The Big Nerd Ranch Guide 第6版
- 数据库原理及应用教程(第四版|微课
- Parallel Programming with Microsoft.NET.pdf
- 开关电源电磁骚扰抑制
- 使用DPO示波器测量开关电源中的功耗
- 单激式变压器开关电源
- 浅论电气设备控制系统操作过电压
- PC Logo for Windows - v1.01a
- Programming_in_Lua_4th_ed._(2017)_.pdf
- 1_Programming Guide for ZPLII ZBI SGD Mirror W
- $$ | V_ {cb} | $$ | Vcb |的确定 和$$ | V_
- AppCode,新书推荐,Beginning iOS 11 Prog
- Applied Mathematical Programming
- TheCProgrammingLanguage中文第2版高清版.
- 《Programming in Lua》中文版
- Robot Programming A Guide to Controlling Auton
- 毕业设计-基于struts汽车租赁管理系统
评论
共有 条评论