结构体指针初认识

 

#include<stdio.h>
#include<string.h>
struct Age//定义结构体
{
    int year;
    int month;
    int day;
};
struct Student//定义结构体
{
    char name[20]; //姓名
    struct Age birthday;  //生日
}student1,*point;
int main(void)
{
    //struct Student student1; //定义结构体变量student1
  	//struct Student *point=NULL;  //定义一个指向Student结构体类型的指针变量point
    point = &student1; //point指向结构体变量student1的首地址, 即第一个成员的地址
    strcpy((*point ).name, "凤凰山"); //(*point).name等价于student1.name
    (*point ).birthday.year = 2000;
    (*point ).birthday.month = 4;
    (*point ).birthday.day = 29;
    printf("姓名:%s\n", (*point).name); //(*point).name不能写成point
    printf("姓名: %s\n",point->name);//也可写成结构体指针指向结构体成员
    printf("生日:%d-%d-%d\n", (*point).birthday.year, (*point).birthday.month, (*point).birthday.day);
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值