有以下程序:<br class="markdown_return">#include &lt;stdio.h><br class

分类: C语言开发工程师 发布时间: 2023-11-03 11:13 浏览量: 0

有以下程序:
#include <stdio.h>
Union pw
{ int i; char ch[2];
}a;
Main()
{ ach[0]=13;
Ach[1]=0;
Printf("%d\n",a.i);
}
程序的输出结果是(注意:ch[0]在低字节,ch[1]在高字节)______。

A.13

B.14

C.208

D.209

正确答案是A