| T O P I C R E V I E W |
| haesong7 |
Posted - 01/12/2003 : 07:01:16 AM Hello, ^^
I really want to use "union" strcuture.However, I can't.
typedef union { short gt[4]; double answer ; } ex;
void test(void){ ex example; ... }
Please, let me know how to declare "union"....
|
| 1 L A T E S T R E P L I E S (Newest First) |
| hajo_old |
Posted - 01/22/2003 : 08:35:46 AM Hello,
try to take "struct"
typedef struct example { short gt[4]; double answer ; }ex;
Hope this works..
|
|
|