반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <Windows.h>
 
int main()
{
    int A = 100;
    int *pA = &A;
    int **ppA = &pA;
    int ***pppA = &ppA;
 
    printf("변수 A의 값(주소) : %d (%d)\n", A, &A);
    printf("변수 pA의 값(주소) : %d (%d)\n", pA, &pA);
    printf("변수 ppA의 값(주소) : %d (%d)\n", ppA, &ppA);
 
    printf("\n\n 포인터가 가르키는곳에는? \n");
    printf("ppA가르키는 값(주소) : %d\n"*ppA);
    printf("pA가르키는 값(주소) : %d\n"*pA);
 
    return 0;
}
 
cs

 

출력결과

 

반응형

+ Recent posts