#include<stdio.h> union ss //没分号 { short int i; char c[4]; }; void main() //是main() { ss x; x.c[0]='e'; x.i=1; printf("%d",x.i); }