it is possible to store structs in an array.
Lets say that i have 5 structus. All 5 of m have different elements. And i need all their elements stored in an array? See example below:
Code:
typedef struct
{
int a;
int b;
}Math;
typedef struct
{
unsigned a:1;
unsigned b:1;
unsigned c:1;
}coils;
typedef struct
{
char name1;
char name2;
char name3;
}names;
Code:
char var[9] = {{Math.a}, {Math.b}, {coils.a}, {coils.b}, {coils.c}, {nemes.name1}, {names.name2}, {names.name3}, {names.name4}};
BoSCHoW.
