- 4
- 0
- 约3.11千字
- 约 10页
- 2019-06-06 发布于上海
- 举报
一、项目的开发过程
方案设计
设计软硬件仕样书
编码
调试
二、C语言基础
C语言的一个基本结构
#define TRUE 1
#define FALSE 0
#define SIZE 200
/*
#define xxx xxx Preprocessor directive
*/
void printf ( char* , int ) ;
void putchar ( char ) ;
/*xxx xxxx ( xxx , xxx ) Function prototype declarator (7) */
char mark [ SIZE + 1 ] ;
/* char xxx Type declarator (1) */
/* External definition (5) */
main ( )
{
int i , prime , k , count ; int xxx /* Type declarator (1) */
count = 0 ; xx = xx /* Operator (2) */
for ( i = 0 ; i = SIZE ; i ++ ) /* for ( xx ; xx ; xx ) xxx ; Control structure (3) */
mark [ i ] = TRUE ;
for ( i = 0 ; i
原创力文档

文档评论(0)