码迷,mamicode.com
首页 > 其他好文 > 详细

结构指针

时间:2019-05-25 11:19:15      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:span   数组   必须   变量   div   argc   结构   不同   today   

和数组不同,结构变量的名字并不是结构变量的地址,必须使?&运算符

#include<stdio.h>

struct date {
    int  month;
    int  day;
    int  year;
};

int main(int argc, char const  *argv[])
{
    struct date today;
    today = (struct date){07, 31, 2014}
    struct date *pDate = &today;
......
}

  



结构指针

标签:span   数组   必须   变量   div   argc   结构   不同   today   

原文地址:https://www.cnblogs.com/bingws/p/10921742.html

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