我有一个非常简单的问题:我想在另一个结构中使用结构,但我希望能够以我想要的任何顺序定义它们。像这样的东西:
// User type definition
typedef struct type1{
int i;
type2 t;
};
// User type definition
typedef struct type2{
int i;
type3 t;
};
// User type definition
typedef struct type3{
int i;
};
我怎样才能做到这一点?