码迷,mamicode.com
首页 > 编程语言 > 详细

C语言-枚举(enum)和联合(union)

时间:2020-03-06 15:07:01      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:main   union   style   div   def   typedef   print   color   int   

使用enum进行定义

/*
枚举类型演示
*/
#include <stdio.h>
int main() {
    enum /*季节*/ {CHUN, XIA = 5, QIU, DONG}; 
    printf("QIU是%d\n", QIU); 
}

使用union联合进行定义

/*
联合演示
*/
#include <stdio.h>
typedef union{
    int val; 
    float fval1; 
} tmp; 
int main(){
    tmp utmp = {0}; 
    printf("&(utmp.val)是%p\n", &(utmp.val)); //所指向的地址是相同的
    printf("&(utmp.fval)是%p\n", &(utmp.fval1)); 
}

 

C语言-枚举(enum)和联合(union)

标签:main   union   style   div   def   typedef   print   color   int   

原文地址:https://www.cnblogs.com/hyq-lst/p/12426310.html

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