资源简介

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个文件信息

评论

共有 条评论