rabidusv
October 4th, 2002, 10:57 AM
How would I make an array of structs then explicitly define each member of each struct in the array? For example:
struct test
{
char member1;
char member2;
};
typedef test array[2];
array real_var={
{ a, b }
{ c, d }
};
This obviously isn't right, any help or suggestions?
struct test
{
char member1;
char member2;
};
typedef test array[2];
array real_var={
{ a, b }
{ c, d }
};
This obviously isn't right, any help or suggestions?