typedef struct A
{
short B;
short C;
} New_Type;
struct Move_Information
{
New_Type Position [25];
};
I am a newbie in C, and I don't really understand the meaning of "array in struct".
Could any wizard explain how to use it ? Thanks.