포인터 질문입니다

ch0nn0m의 이미지

포인터 변수 a에 메모리 동적할당 하고 변수를 저장한후 t라는 포인터 변수에 a를 복사시켰습니다
그리고나서 t를 메모리 해제 시키게 되면 a의 값은 쓰레기 값일것이라고 예상하고 해봤는데요.
예상대로 a의 값은 쓰레기 값이 나왔는데...
t에 a를 복사햇지만 주소값을 출력해보면 다르네요.......아~ 헷갈리네요..^^;

 
#include<stdio.h>
#include<stdlib.h>
 
int main()
{
 int *a;
 int *t;
 a=(int*)malloc(sizeof(int));
 *a=20;
 printf("힙에 저장된 변수 a: %d\n",*a);
 printf("힙에 저장된 변수 &a: %d\n", &a);
 t=a;
 printf("힙에 저장된 변수 t: %d\n",*t);
 printf("힙에 저장된 변수 &t: %d\n", &t);
 free(t);
 printf("힙에 저장된 변수 a: %d\n",*a);
 return 0;
}

tk3829의 이미지

main내에서 선언한 포인터변수는 자체 크기(4bype)를 가지고 있고,
이러한 변수가 malloc으로 heap에 할당한 영역을 가리키고 있지 않나요,
즉 &a와 &t는 항상 다를 수 밖에 없는 것 같은데요..
서로 포인터 변수로 할당되어 같은 영역을 가르키고 있지만,
서로 할당된 주소는 다르니까요..

근데 힙에 저장된 변수라는 말이 맞는가요.. 아닌것 같은데 ㅠ..
스택에 변수가 저장되고 힙의 할당한 영역을 가르키고 있는것 같은데..^^;

bushi의 이미지

int main()
{
        char *c;
 
        c = 0xDeadBad0;
        printf("%p\n", &c);
        printf("%x\n", c);
 
        c = malloc(sizeof(*c));
        printf("%p\n", &c);
        printf("%x\n", c);
        printf("%x\n", *c);
}

그리고, free(x) 후에 x 가 가리키던 공간이 어찌될 지, 뭐가 남아있을 지 예상하시면 안됩니다.
뭘 예상하시건간에... 맞을 수도 있고, 틀릴 수도 있습니다.

OTL

댓글 달기

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