C 언어 포인터 변수의 길이

2767 단어
#include 
int main()
{
    /*********************************************
     *
     *      :        ,              
     *
     **********************************************/
     int a = 10;
     int *pi = &a;
     printf("int       :%d
",sizeof(pi)); double b = 10; double *pd = &b; printf("double :%d
",sizeof(pd)); float f = 10; float *pf = &f; printf("float :%d
",sizeof(pf)); char c = 10; char *pc = &c; printf("char :%d
",sizeof(pc)); return 0; }
int       :4
double       :4
float       :4
char       :4

 
전재 대상:https://www.cnblogs.com/heml/p/3530151.html

좋은 웹페이지 즐겨찾기