C언어 변수의 주소 출력

1 개요[ | ]

Print the address of variable
변수 주소 출력
  • 변수의 주소 값을 출력
#include <stdio.h>

int main()
{
    int a = 10;
    int *p = &a;

    // printf("%d\n", *p);
    printf("%p\n", p); // 0x7ffe60b3dc5c

    return 0;
}
→ 주소 값은 시스템과 환경에 따라 다른 값이 출력된다.

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}