#define으로 상수 정의할때

season12의 이미지

10진수로 해도 되는데
소스를 보다보면 거의 16진수로 해놓았던데
이게 뭐 다른 이유가 있을까요?
나름 생각해봐도 답이 안나와서요;;
답변 주시면 감사하겠습니다.

shint의 이미지

여러가지 상수를 조합할때 필요합니다.

#define DEF_A 0x0001
#define DEF_B 0x0010
뭐 이런게 있다고 하면.

unsigned int nC = DEF_A | DEF_B;
두가지 조건을 nC는 가지고 있죠.

if(nC & DEF_A)
{
}
if(nC & DEF_B)
{
}
이런식으로 비교가 가능합니다.

16진수를 사용하는 이유는.
10진수보다 16진수가 알아보기 편하기 때문인거 같습니다.

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

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

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

madman93의 이미지

간단히 생각하시면 됩니다.
10진수로 해도 된다면 10진수로 하세요
그냥 각자 스타일 맞게 하면 됩니다.

---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------

bushi의 이미지

[bushi@rose tmp]$ cat -n t.c
     1	#include <stdio.h>
     2	
     3	#define X (2147483648)
     4	#define Y (0x80000000)
     5	
     6	int main(void)
     7	{
     8		unsigned int x,y;
     9		x = X;
    10		y = Y;
    11		printf("%u %u\n", x, y);
    12		return 0;
    13	}
[bushi@rose tmp]$ 
[bushi@rose tmp]$ gcc -O0 -o t t.c
t.c: In function ‘main’:
t.c:9: warning: this decimal constant is unsigned only in ISO C90
[bushi@rose tmp]$ 

#define X (2147483648U)

asm 문법은 좀 다른데... 잊었습니다.

Scarecrow의 이미지

10진수로 쓸걸 16진수로 쓴다고
자료형(type)이 달라진다거나 하는 그런 특별한 이유같은건 없고
읽기 편하자고 그렇게 쓰는겁니다.

imposno의 이미지

저는 자료형이 달라지는 것으로 알고있습니다.
이런. 확답을 하시는거 보니 제가 잘못 알고 있었나 봅니다.

planetarium의 이미지

다르지 않습니다.

익명 사용자의 이미지

mycoboco@woong ~ $ cat foo.c
#include <stdio.h>
 
#define DEC 2147483648
#define HEX 0x80000000
 
int main(void)
{
    printf("%d, %d\n", (int)sizeof(DEC), DEC > -1);
    printf("%d, %d\n", (int)sizeof(HEX), HEX > -1);
}
mycoboco@woong ~ $ gcc -std=c99 foo.c
mycoboco@woong ~ $ ./a.out
8, 1
4, 0
imposno의 이미지

제가 생각하고 있었던 글을 코드로 작성해주셨네요.
익명 사용자님 감사합니다.

planetarium의 이미지

이런, 죄송합니다. imposno님께도요.

ymir의 이미지

ANSI 에서는 integer constant 중 suffix 가 없는 decimal 의 경우..
int, long int, unsigned long int 로 해석되는데..
C99 에서는 int, long int, long long int 로 해석되는군요..
두 표준 모두 octal 이나 hexadecimal 의 경우는 각각의 type 에 unsigned 가 추가됩니다.

되면 한다! / feel no sorrow, feel no pain, feel no hurt, there's nothing gained.. only love will then remain.. 『 Mizz 』

댓글 달기

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