構造体と構造体の間には、typedefというキーワードがあります。参照はこれです:構造体の種類が異なります
typedef struct{
int one;
int two;
}myStruct;
対typedef struct vs struct definitions
struct myStruct{
int one;
int two;
};
しかし、この2種類の差分です:
struct point {
int x;
int y;
} my_point;
つ以上の対
struct point {
int x;
int y;
};
:
は、typedef struct set_t{
int count;
void **values;
} *SetRef;
このタイプは何ですか?