728x90
#include<stdio.h>
void main()
{
int M=10;
int *mp;
int **mpp;
mp=&M;
mpp=∓
printf("%u,%u,%u\n",M,mp,*mp);
printf("%u,%u,%u\n",mpp,*mpp,**mpp);
}
결과
10,1245052,10
1245048, 1245052,10
728x90
#include<stdio.h>
void main()
{
int M=10;
int *mp;
int **mpp;
mp=&M;
mpp=∓
printf("%u,%u,%u\n",M,mp,*mp);
printf("%u,%u,%u\n",mpp,*mpp,**mpp);
}
결과
10,1245052,10
1245048, 1245052,10