C语言指针(结构体)例子

作者在 2011-10-10 21:32:02 发布以下内容
#include <stdio.h>
#include <malloc.h>
typedef struct _type
{
    int a;
    char b;
} Type;
int main()
{
    int *p=NULL;
    Type q;
    q.a = 7;
    printf("q=%d\n",q.a);
    printf("q.a point=%x\n",&q.a);
    p=&(q.a);
    printf("p=%x\n",p);
    printf("p=%x\n",&p);
    printf("p=%d\n",*p);
    return 0;
}
C语言 | 阅读 857 次
文章评论,共0条
游客请输入验证码
文章归档
最新评论