(C언어) typedef 키워드

이동욱

2021/11/28

Categories: 프로그래밍

사용자 정의 형 타입


typedef 타입정의 타입이름;

사용 예제


#include <stdio.h>

typedef enum {true, false} bool;

int main(int argc, char *argv[]) {

    bool is_true = true;
    printf("result: %d\n", is_true);
    return 0;
}

참고 문헌

>> Home