struct date{int month;int day;int year;} today,yestaday;int y,m,d;scanf("please input the year:%i",&.y);scanf("please input the month:%i",&.m);scanf("please input the day:%i",&.d);today->month = m;today->day = d;today->year =y;prinf("the year is :%i,the month is :%i,the day is :%i",today->year,today->... |