[완료]간단한 구조체 포인터 문제

dalili의 이미지

#include

typedef struct {
int a;
int b;
float c;
}ST;

void main()
{
ST s;
s.a=10;
s.b=11;
s.c=12.5;

printf("%p %p %p\n", &s.a, &s.b, &s.c);

printf("%p %p %p\n", &s, (&s)+1, &s+2);
}

결과
0xbfa3dac0 0xbfa3dac4 0xbfa3dac8
0xbfa3dac0 0xbfa3dacc 0xbfa3dad8

두 개다 결과가 같을줄 알았는데 이상하게 제가 생각했던 것하고 다르네요
이거는 왜 이런건가요?

planetarium의 이미지

포인터에 덧셈을 한다는게 무슨 의미인지 생각해 보세요. 몇바이트나 증가할까요?

mirheekl의 이미지

printf("%p %p %p\n", &s.a, &s.b, &s.c);
printf("%p %p %p\n", &s, (&s.a)+1, (&s.a)+2);

--
This is for you new people. I have just one rule :
Everyone fights, no one quits. If you don't do your job, I'll shoot you myself. Do you get me?

--

freestyle의 이미지

첫번째 printf문은 잘 아실테고...

&s, (&s)+1, &s+2 ...

s는 구조체 변수이고, &s의 주소는 &s.a와 동일하지만,

첫번째 printf문과 두번째 printf문은
해당 명칭으로 참조되는 대상체가 '구조체 전체' vs '구조체 내부의 한 변수'로 서로 다릅니다.

+ 연산자의 역할 중, '상수 + 상수'가 많이 사용되지만 '포인터 + 상수'로도 사용할 수 있습니다.

'포인터 + 상수'는 해당 포인터가 참조하는 대상체의 크기(sizeof의 결과) * 상수만큼이
원래의 포인터 값에 더해진 결과가 됩니다.

예를 들어 int a의 주소가 0x12345678이고, &a + 4라면
0x12345678 + sizeof(int) * 4 = 0x12345678 + 0xf0 = 0x12345688이 나옵니다.

원 질문으로 돌아가서,
구조체 전체의 크기가 12이기 때문에, +1할 때마다 메모리 주소가 12씩 증가하게 되는 것입니다.
---------------------
Go to the U-City

----------------------------------------------------------------------------------------
Don't Feed the Trolls!
----------------------------------------------------------------------------------------

select99의 이미지

참고로 구조체의 크기가 12가 아닐것이며 +1 해도 12증가하지 않을겁니다.

freestyle의 이미지

어떤 말씀이신지요?

0xbfa3dac0 0xbfa3dacc 0xbfa3dad8

여기서 12씩 증가한 거 아닌가요?
---------------------
Go to the U-City

----------------------------------------------------------------------------------------
Don't Feed the Trolls!
----------------------------------------------------------------------------------------

select99의 이미지

아.. int 였네요.char로 잘못봤군요..

그래도 12라고 꼭장담할순 없을거같네요. 시스템에따라다를 수있다고 봐야할듯하네요.

freestyle의 이미지

네. 그렇지요. 시스템에 따라 다르죠.

전 위 질문만 놓고 답변해서 표현이 좀 부정확 했네요.
----------------------
Go to the U-City

----------------------------------------------------------------------------------------
Don't Feed the Trolls!
----------------------------------------------------------------------------------------

winterprincess의 이미지

왜 전 float 형이 함정으로 보일까요...

-----------------------------------------------------------------------------------

오직 겨울 공주를 위하여.

-----------------------------------------------------------------------------------

오직 겨울 공주를 위하여.

dalili의 이미지

freestyle 님이 잘 설명해 주셨네요

댓글 달기

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