const size_t N_SLAVES = 3;
struct STATIONS
{
int a;
int b;
float c;
};
const STATIONS station[N_SLAVES] = {
{ 1, 2, 3.1f } // station[0]
, { 1, 2, 3.1f } // station[1]
, { 1, 2, 3.1f } // station[2]
};
int a = station[0].a;
int b = station[0].b;
float c = station[0].c;