当前位置: 答题翼 > 问答 > 计算机类考试 > 正文
目录: 标题| 题干| 答案| 搜索| 相关
问题

下面程序的运行结果是typedef union student{ char name[10]; long sno; char sex; float score[


下面程序的运行结果是typedef union student{ char name[10]; long sno; char sex; float score[4];}STU;main(){ STU a[5]; printf("%d ",sizeof(a));}

参考答案
您可能感兴趣的试题
  • 下面程序的运行结果是 include main() {int a=28,b; char s[10],*p; p=s; do{b=

  • 以下程序的输出结果是typedef union{long x[2] int y[4]; char z[8]; } MYTYPE;MYTYPEthem;main(

  • 下列程序的运行结果是【 】。 main() { union EXAMPLE { struct

  • 下面程序段的运行结果是char*s=abcde;s+=2;printf(\%d s);A.cdeB.字符cC.字符c的地址D.无

  • 下面程序段的运行结果是char *S=abcde;s+=2;printf(\%d s);A.cdeB.字符cC.字符c的地址D.

  • 下面程序段的运行结果是()。(注:└┘代表空格)#include stdio.hmain(){ char s[6]s=abcdprintf(\\%s\\ s)}