题目 / 答案提交正确答案
下面程序的运行结果是()。 #include <stdio.h> union data { int i; char c; double d; }a[2]; void main() {printf("%d
",sizeof(a)); }
A.16
B.8
C.4
D.2
正确答案:A
关键字 浏览量:次
上一篇:以下对结构体变量stul中成员age的非法引用是()。 struct student {int age; int num
下一篇:设有以下说明,则下面不正确的叙述是()。 union data { int i; char c; float f; }u
相关问题
【智慧树】下面程序的运行结果是()。 struct st { int n; int a[20]; }; void f(int *a
【智慧树】下面程序的运行结果是()。 #include <stdio.h> #include <string.h
【智慧树】以下下面程序的运行结果是()。 #include <stdio.h> int main() { int a=
【智慧树】下面程序的运行结果是()。 #include <stdio.h> int main() { int i; f
【智慧树】下面程序的运行结果是()。#include<stdio.h>intmain(){staticchara[]=
【智慧树】下面程序的运行结果是()。#include<stdio.h>#include<string.h>