资源简介
随书源码
PART ONE
Preliminaries 1
1 An Overview of ANSI C
1.1 What is C?
1.2 The structure of a C program
1.3 Variables,values ,and types
1.4 Expressions
1.5 Statements
1.6 Functions
2 Data Types in C
2.1 Enumeration types
2.2 Data and memory
2.3 Pointers
2.4 Arrays
2.5 Pointers and arrays
2.6 Records
代码片段和文件信息
/*
* 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);
}
相关资源
- promax速度格式转化成CGG速度格式的源
- perl调用grep shell指令
- access简历学生数据库
- 海康摄像机抓图源码
- 易语言海康摄像机抓图源码
- 微信小程序 贪吃蛇游戏源码下载542
- 身份证号码生成器源码(易语言)
- 赞vue仿 酷狗音乐app源码
- 易语言和三菱plc通信tcp mc
- 易语言MySql简单操作源码
- 心电图 ECG 诊断
- 精易模块V6.9.1源码
- halcon-找缺口
- 《Access2003VBA数据库编程》.ppt(100页)
- 智能停车 微信小程序源码
- Labview与西门子1200 plc TCP通信
- Halcon之blob分析+拟合测量
- 少儿编程:格斗游戏源码(scratch 2.0)
- halcon九点标定(.hdev)
- EXCEL函数入门基础知识.doc
-
Flash 2048游戏(actionsc
ript3.0) - linux命令大全(chm)
- Halcon学习之二:摄像头获取图像和相
- 易语言模拟按键精灵源码
- halcon模版匹配/角度测量
- halcon实现二维码识别
- halcon 拟合圆
- 百度ocr 图片识别(易语言)
- Halcon 车牌识别 源码
- PSCAD风电建模\\双馈风力发电机的PSC
评论
共有 条评论