单项选择题有以下定义和语句struct workers{ int num;char name[20];char c;struct{ int day;int month;int year;} s;};struct workers w,*pw;pw=&w;能给w中year成员赋值为1980的语句是______。
单项选择题有以下程序#include <stdio.h>int f(int n){ int t=0, a=5;if(n 2) {int a=6; t+=a++;}else {int a=7; t+=a++;}return t+a++;}main(){ int s=0,i=0;for(;i<2;i++) s+=f(i);printf( %d n ,s);}程序运行后的输出结果是______。