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分配内存问题

 

上一篇:C# Delegate 委托


下一篇:ygopro源码分析3:解剖