몽상실현개발주의

[따배씨] 14.16 공용체와 구조체를 함께 사용하기 본문

Language/C

[따배씨] 14.16 공용체와 구조체를 함께 사용하기

migrationArc 2021. 7. 5. 23:47

[따배씨] 14.16 공용체와 구조체를 함께 사용하기

따배씨 - 따라하며 배우는 C언어

14강 구조체_2

14.16 공용체와 구조체를 함께 사용하기

#include <stdio.h>

/*
    Unions And Structures
 */

struct personal_owner
{
    char rrn1[7];       //Resident Registration Number
    char rrn2[8];       //ex: 830422-1185600
};

struct company_owner
{
    char crn1[4];       //Company Registraton Number
    char crn2[3];       //ex: 111-22-33333
    char crn3[6];
};

union data
{
    struct personal_owner po;
    struct company_owner co;
};

struct car_data
{
    char model[15];
    int status; /* 0 = personal, 1 = company */
    union data ownerinfo;
};

void print_car(struct car_data car)
{
    printf("---------------------------------------\n");
    printf("Car model : %s\n", car.model);
    
    if (car.status == 0) /* 0 = personal, 1 = company */
    {
        printf("Personal owner : %s-%s\n", car.ownerinfo.po.rrn1, car.ownerinfo.po.rrn2);
    }
    else
    {
        printf("Company owner : %s-%s-%s\n", car.ownerinfo.co.crn1, car.ownerinfo.co.crn2, car.ownerinfo.co.crn3);
    }
    printf("---------------------------------------\n");
}

int main()
{
    struct car_data my_car = {.model = "Avante", .status = 0, .ownerinfo.po = {"830422", "1185600"}};
    struct  car_data company_car = {.model = "Sonata", .status = 0, .ownerinfo.co = {"111", "22", "333"}};
    
    print_car(my_car);
    print_car(company_car);
    
    return 0;
}
union data
{
    struct personal_owner po;
    struct company_owner co;
};
  • personal_owner 와 company_onwer 구조체를 공용체로 묶어서 처리

 

struct car_data
{
    char model[15];
    int status; /* 0 = personal, 1 = company */
    union data ownerinfo;
};
  • status 에 따라 다른 ownerinfo 를 받아 오게 되는데, union 을 사용하므로써 메모리의 효용을 높임

 

 


이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.

http://blog.naver.com/atelierjpro

 

실리콘 밸리의 프로그래머 : 네이버 블로그

안녕하세요! 홍정모 블로그에 오신 것을 환영합니다. 주로 프로그래밍 관련 메모 용도로 사용합니다. 강의 수강하시는 분들은 홍정모 연구소 카페로 오세요.

blog.naver.com

http://www.inflearn.com/course/following-c

 

홍정모의 따라하며 배우는 C언어 - 인프런 | 강의

'따배씨++'의 성원에 힘입어 새롭게 개발된 C 언어로 시작하는 프로그래밍 입문 강의입니다. '따배씨'와 함께 프로그래밍 인생을 업그레이드 해보세요., 따라하며 배우는 C언어 '따배씨++'의 성원

www.inflearn.com

Comments