系统相关
首页 > 系统相关> > malloc分配内存问题

malloc分配内存问题

作者:互联网

#include<stdio.h>
#define MaxVertexNum 10
int main(){
    // int a=10;
    // int* p=&a;
    typedef struct LinkQueue{
    int V[MaxVertexNum];
    int front,rear;
}*Queue;

    printf("%d ",sizeof(struct LinkQueue));
    printf("%d ",sizeof(struct LinkQueue*));//指针变量是一个首地址
    printf("%d",sizeof(Queue));

    return 0;
    
}

 

 

标签:malloc,struct,int,LinkQueue,问题,分配内存,printf,MaxVertexNum,sizeof
来源: https://www.cnblogs.com/iGhost/p/14705056.html