구조체에 이런식으로 멤버변수 선언하면 어떻게 되나요?

cg3980의 이미지

typedef struct_name{
....
unsigned char var:4;
....
}

위처럼 unsigned char var:4라고 선언하면 뒤에 붙는 :4는 어떤 역할을 하나요?
위 코드를 봤는데 어떻게 되는질 모르겠네요.
변수이름이 var:4는 아닌거 같고..

그리고 이런식으로 선언하는 방식을 부르는 용어가 따로 있나요?

익명 사용자의 이미지

shint의 이미지

4 비트 사용방법

http://codepad.org/2YUXao0n

계산기 프로그래머
HEX 16진수 - hexadecimal
DEC 10진수 - decimal
OCT 8진수 - octal
BIN 2진수 - binary
https://cafe.naver.com/assemcafe/357
https://kajukaju.blog.me/120164569028
https://blog.naver.com/sgkyaku/50000154348

typedef struct
{
    unsigned char var:4;
}bit;
 
 
int main()
{
    int i;
    int m;
    bit b;
 
    //HEX 16진수 값 - 출력 해봄
    b.var = 0xFF;
    printf("%08x\n", b.var);
    printf("\n");
 
    //HEX 16진수 값 - 하나씩 출력
    for(m=0; m<16; m++)
    {
        b.var = m;
        printf("%x\n", (b.var));
    }
    printf("\n");
 
    printf("왼쪽부터. 1비트씩 출력\n");
    for(m=0; m<16; m++)
    {
        b.var = m;
        printf("%02d : ", m);
        for(i=0; i<4; i++)
        {
            printf("%x", (b.var >> i) & 0x01);
        }
        printf("\n");
    }
    printf("\n");
 
    //오른쪽부터. 1비트씩 출력
    //하지만. 결과 값이 이상하게 출력 됨.
    printf("잘못된 - 출력 값\n");
    for(m=0; m<16; m++)
    {
        b.var = m;
        printf("%02d : ", m);
        for(i=4; i>0; i--)
        {
            printf("%x", (b.var >> i) & 0x01);
        }
        printf("\n");
    }
    printf("\n");
 
    printf("오른쪽부터. 1비트씩 출력\n");
    for(m=0; m<16; m++)
    {
        b.var = m;
        printf("%02d : ", m);
 
        char buf[4];
        for(i=0; i<4; i++)
        {
            if(  ((b.var >> i) & 0x01) == 0  )
            {
                buf[3-i] = '0';
            }
            else
            {
                buf[3-i] = '1';
            }
        }
        printf("%s", buf);
        printf("\n");
    }
    return 0;
}
 
0000000f
 
0
1
2
3
4
5
6
7
8
9
a
b
c
d
e
f
 
왼쪽부터. 1비트씩 출력
00 : 0000
01 : 1000
02 : 0100
03 : 1100
04 : 0010
05 : 1010
06 : 0110
07 : 1110
08 : 0001
09 : 1001
10 : 0101
11 : 1101
12 : 0011
13 : 1011
14 : 0111
15 : 1111
 
잘못된 - 출력 값
00 : 0000
01 : 0000
02 : 0001
03 : 0001
04 : 0010
05 : 0010
06 : 0011
07 : 0011
08 : 0100
09 : 0100
10 : 0101
11 : 0101
12 : 0110
13 : 0110
14 : 0111
15 : 0111
 
오른쪽부터. 1비트씩 출력
00 : 0000
01 : 0001
02 : 0010
03 : 0011
04 : 0100
05 : 0101
06 : 0110
07 : 0111
08 : 1000
09 : 1001
10 : 1010
11 : 1011
12 : 1100
13 : 1101
14 : 1110
15 : 1111

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.