有如下的说明:union test{ int a; char c; }test1;则在VC环境下sizeof(union test) 的结果是______。
查看答案
以下程序的运行结果是______。#include union con{ struct {int x,y,z;}m;int i; }num;main(){ num.m.x=4;num.m.y=5;num.m.z=6;num.i=0;printf("%d\n",num.m.x);}
如有定义的枚举类型:enum week_day{Wed=3,Thu,Fri,Sat,Sun,Mon,Tue}everyday;则,Mon的值为______。
以下程序输出的结果是。typedef union{long x[2];int y[4];char z[8];}MYTYPE;MYTYPE them;void main(){printf(“%d\n”,sizeof(them));}
根据以下句子,选出最符合句意的一个单词The strength of our country bulkwarded us through the ______ crisis.
A. financial
B. economic
C. monetary
D. economical