码迷,mamicode.com
首页 > 其他好文 > 详细

常量类型

时间:2014-08-18 23:20:43      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   2014   div   log   

 

 

三种定义常量的方法

 1 #include <stdio.h>
 2 
 3 //1. 预编译
 4 #define PI 3.14
 5 
 6 int main(void)
 7 {
 8 //2. const关键字
 9     const int LENGTH = 100;
10 
11 //3. 枚举类型
12     enum color {
13         RED,
14         GREEN,
15         BLUE
16     };  
17     printf("pi = %f\n", PI);
18     printf("length = %d\n", LENGTH);
19     printf("red  = %d\n", RED);
20     printf("green = %d\n", GREEN);
21     printf("blue  = %d\n", BLUE);
22 }

bubuko.com,布布扣

 

常量类型,布布扣,bubuko.com

常量类型

标签:style   blog   http   color   io   2014   div   log   

原文地址:http://www.cnblogs.com/itpoorman/p/3920677.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!