프로그래밍[Univ]/C언어

[C언어 소스]sizeof 함수

Cloud Travel 2008. 6. 30. 15:08

#include<stdio.h>

void main()
{
    int size_char, size_int, size_float, size_double;
    int size_short_int, size_long_int;

    size_char = sizeof(char);
    size_int = sizeof(int);
    size_float = sizeof(float);
    size_double = sizeof(double);
    size_short_int = sizeof(short int);
    size_long_int = sizeof(long int);

    printf("char = %d\nint = %d\nfloat = %d\ndouble = %d\n",size_char,size_int, size_float,size_double);
    printf("short int = %d\nlong int = %d\n",size_short_int,size_long_int);
}
-----------------------------------------------------------------------
어떤 데이터형의 크기를 알아보기 위해서 사용되는 함수

sizeof 

문법은 "변수 = sizeof(변수명);"로 사용한다.


결과

사용자 삽입 이미지