structuras en c code example
Example: struct anidadas en c
struct position2D
{
int i;
int j;
};
struct player
{
struct position2D;
int id;
};
struct position2D
{
int i;
int j;
};
struct player
{
struct position2D;
int id;
};