Advertisement
Advertisement
| 07.04.2008 at 08:54AM PDT, ID: 23539668 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: |
typedef struct TBox{
int color;
int size;
Boxes* boxes;
} Box;
typedef struct TBoxes{
int count;
Box* boxes;
} Boxes;
|