#include "stdio.h" union{ int a; float b; char c; }x; int main() { x.c='x'; x.b=3.14; x.a=25; printf("%g \t%c \t %d\t\n",x.b,x.c,x.a); ...
確定! 回上一頁