#include<stdio.h> main() { union dat { int p; char ch; double f; }x; printf("十进制输出:%d,十六进制输出:%x,八进制格式输出:%o\n", sizeof(x), sizeof(x), sizeof(x)); }