構造体内の構造体にアクセスしたいのですが、どのように知っていますか?struct in struct in struct
EDIT:
typedef struct{
int a, b;
} struct_1;
typedef struct{
int c;
struct_1 exemple;
} struct_2;
struct_2 Table[100];
ここで例えば、私が表に値を割り当てる[0]
.exemple.aありがとうございます。 EDIT:すごいなdumbaイムは...時にはそれは私がちょうど6エントリはので、私はちょうど印刷にとにかく
'テーブル[0] .exemple.a =値;何かがありませんか? –
私はちょうど質問を編集しました – Glove