标签: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