c语言-符号常量

给常量定义有意义的名字。

#define 名称 替换文本

替换文本可以是任何字符序列,一个数字,一个函数等。


#include 

#define LOWER 0 /*lower limit of table*/

#define UPPER   300 /*upper limit*/

#define STEP 20 /*step size*/

/*print Fahrenheit-Celsius table*/

main()

{

    int fahr;

    for(fahr = LOWER; fahr <= UPPER; fahr = fahr + STEP )

        printf("%3d %6.1f\n",fahr,(5.0/0.9)*(fahr-30));

}



你可能感兴趣的:(c语言)