[완료]Binary data를 Hex 값으로 표현 하는 프로그램 작성 중에 질문입니다.

neobug의 이미지

아래는 example1이라는
Binary Data 파일을 읽어들여
HEX 값으로 출력하는 간단한
Code 입니다.

int main()
{
int fd, nread;
char* buf[1];
int result = 0;

fd = open("example1", O_RDONLY);

while((nread = read(fd, buf, 1)) > 0)
{
result = (int)buf[0];
printf("0x%X ", result);
}
close(fd);
exit(0);
}

example1의 hex 값입니다.
D0CF 11E0 A1B1 1AE1 0000 0000 0000 0000 0000 0000 0000 0000 3E00 0300 FEFF 0900
0600 0000 0000 0000 0000 0000 0100 0000 0C00 0000 0200 0000 0000 1000 0F00 0000
0100 0000 FEFF FFFF 0000 0000

프로그램 실행 결과는 아래와 같구요.
0xD0000000 0xCF000000 0x11000000 0xE0000000 0xA1000000 0xB1000000 0x1A000000 0xE1000000 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x3E000000 0x0 0x3000000 0x0 0xFE000000 0xFF000000 0x9000000 0x0 0x6000000 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1000000 0x0 0x0 0x0 0xC000000 0x0 0x0 0x0 0x2000000 0x0 0x0 0x0 0x0 0x0 0x10000000 0x0 0xF000000 0x0 0x0 0x0 0x1000000 0x0 0x0 0x0 0xFE000000 0xFF000000 0xFF000000 0xFF000000 0x0 0x0 0x0 0x0

여기서 제 질문은 실행결과가 32bit 자료형 전체를 hex 값으로 보여주고 있는데 8bit 만 표현 하게 할수는 없는가 입니다.
예를들어, 0xD0 0xCF 0x11 0xE0 0xA1 0xB1 ...... 이런식으로 출력되게끔요

실제로 아래와 같은 code를 실행 시키면

int main()
{
char source = 'a';
int result = 0;

result = (int)source;
printf("0x%X\n", result);
}

결과는

0x61

이라고 나옵니다.
이런 문제에 봉착하셔서 해결하셨던 경험이 있으신분은 부디 도와주십시요.

chunmok의 이미지

1 #include
2 #include
3
4 extern int errno;
5
6 union union_tag {
7 unsigned long ll;
8 unsigned char cc[4];
9 } trans;
10
11 int main()
12 {
13 unsigned long a = 0xd0000000;
14 trans.ll = a;
15 unsigned char c = trans.cc[3];
16
17 printf( "a=%02X, c=%02X\n", a, c );
18 }

[chunmok@raf temp]$ a.out
a=D0000000, c=D0

neobug의 이미지

아래는 union 적용한 코드입니다

union unspan {
unsigned long ul;
unsigned char uc[4];
} trans;

int main()
{
int fd, nread;
char* buf[1];

fd = open("example1", O_RDONLY);

while((nread = read(fd, buf, 1)) > 0)
{
trans.ul = (long)buf[0];
printf("%02X ", trans.uc[0]);
}
close(fd);
exit(0);
}

bushi의 이미지

unsigned char buf[1];
...
while (...) {
   unsigned int result = buf[0];
   printf("%02X ", result);
}
...

unsigned 가 사족이라 생각되시면

char buf = 0xff;
int result = buf;
printf("%x\n", result);

를 고민해보시고요.

OTL

dg의 이미지

char* buf[1];를 char buf[1];로 바꾸고 해보세요

댓글 달기

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