码迷,mamicode.com
首页 > 编程语言 > 详细

浅谈c语言typedef 与结构体指针(个人小经验)

时间:2014-05-05 12:54:29      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:style   int   string   type   name   c   



#include<stdio.h>
#include<string.h>

typedef struct emp{
 char sex[8];
 char name[15];
 int age;
}*emp;//这里我们用typedef把emp这个结构体变成了*emp这种指向结构体成员的结构体指针

/*typedef struct emp{
 char sex[8];
 char name[15];
 int age;
}pi,*emp;//为了程序的可读性最好不要这样声明*/

int main(){
 emp p;//注意这里emp是指向结构体的指针变量 emp *p这样的声明是错误的,emp p这样声明了结构体类型的指针变量p
 strcpy(p->sex,"male");
 strcpy(p->name,"zhangfei");
 p->age=20;
 printf("sex is %s\n",p->sex);
 printf("name is %s\n",p->name);
 printf("Age is %d\n",p->age);
 return 0;
}

浅谈c语言typedef 与结构体指针(个人小经验),布布扣,bubuko.com

浅谈c语言typedef 与结构体指针(个人小经验)

标签:style   int   string   type   name   c   

原文地址:http://blog.csdn.net/developerof/article/details/24885205

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!