비트 필드를 이용한 10 진수를 2 진수로 출력하는 프로그램인데

yangam의 이미지

// 10 진수를 2 진수로 출력하는 프로그램 (비트필드 이용)

#include <stdio.h>

union bit_field1 {
	int n;
	
	unsigned bit1	: 1;
	unsigned bit2	: 1;
	unsigned bit3	: 1;
	unsigned bit4	: 1;
	unsigned bit5	: 1;
	unsigned bit6	: 1;
	unsigned bit7	: 1;
	unsigned bit8	: 1;
	unsigned bit9	: 1;
	unsigned bit10	: 1;
	unsigned bit11	: 1;
	unsigned bit12	: 1;
	unsigned bit13	: 1;
	unsigned bit14	: 1;
	unsigned bit15	: 1;
	unsigned bit16	: 1;
	unsigned bit17	: 1;
	unsigned bit18	: 1;
	unsigned bit19	: 1;
	unsigned bit20	: 1;
	unsigned bit21	: 1;
	unsigned bit22	: 1;
	unsigned bit23	: 1;
	unsigned bit24	: 1;
	unsigned bit25	: 1;
	unsigned bit26	: 1;
	unsigned bit27	: 1;
	unsigned bit28	: 1;
	unsigned bit29	: 1;
	unsigned bit30	: 1;
	unsigned bit31	: 1;
	unsigned bit32	: 1;
} num;

int main()
{
	printf("\n아무 숫자나 입력하세요: ");
	scanf("%d", &num.n);

	printf("\n10 진수 %d 를 2 진수로 표현하면.... %d%d%d%d%d%d%d%d %d%d%d%d%d%d%d%d %d%d%d%d%d%d%d%d %d%d%d%d%d%d%d%d\n\n", num.n, num.bit32, num.bit31, num.bit30, num.bit29, num.bit28, num.bit27, num.bit26, num.bit25, num.bit24, num.bit23, num.bit22, num.bit21, num.bit20, num.bit19, num.bit18, num.bit17, num.bit16, num.bit15, num.bit14, num.bit13, num.bit12, num.bit11, num.bit10, num.bit9, num.bit8, num.bit7, num.bit6, num.bit5, num.bit4, num.bit3, num.bit2, num.bit1);
	
	return 0;
}

이 프로그램이 제대로 작동하지 않는 이유가 뭔가요?

위에 처럼 정의하면, int 형 변수 n 이 32 비트를 차지..
그리고 그 32 비트를 1 비트씩 bit1 - bit32 변수가 공유하는 것으로 배웠는데..
ㅇㅖ전에 됐던 것 같은데 이상하네요.

참고로.. union 안에 struct 로 비트 필드를 넣었을 때는 됩니다.
즉....

union b
{
      int n;

      struct bit
      {
           unsigned bit1 : 1;
           unsigned bit2 : 1;
                       .
                       .
                   (생략)
                       .
                       .
           unsigned bit32 : 1;
      } bit;
} num;
hwandori의 이미지

첫번째 예는 모든 비트가 같은 값을 갖죠.. int의 첫번째 비트를 모두 공유하는 것 같습니다.

0                                               31
|          |           |            |           |     n
| |   bit1
| |   bit2
.
.
.
| |

이렇게요..

그러니 4를 입력하면 100 이므로 0번째 비트가 0이니까.. 모두 0이 출력되고 .. 3을 입력하면 11 이므로 0번째 비트가 1이기때문에 모두 1이 출력됩니다..반면에 두번째예에서는

0                                               31
|          |           |            |           |     n
| | | |...                                ... | |    struct bit

이 되어 예상 한 결과가 나오고요..

세벌의 이미지

yangam wrote:
참고로.. union 안에 struct 로 비트 필드를 넣었을 때는 됩니다.

문제 안에 답이 있네요. 이게 정답입니다.
union만 쓰고 struct 썼을 때 원하는 대로 안 나오는 이유는...
union의 정의를 잘 보시면 알 수 있겠죠?

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.