?
Danke!
Ich habe es mittlerweile doch zu Fuß gelöst:
typedef struct md {
short m;
short d;
} smd;
const smd DES[] = {{ 1, -2}, { 4, -3}, { 8, -4}, {12, -2}};
const smd DED[] = {{ 1, 6}};
const smd DEA[] = {{ 1, 3}, { 4, 4}};
const smd DEM[] = {{ 1, 5}, { 6, 6}, { 8, 7}, {11, 6}, {12, 5}};
const short sDES = sizeof(DES) / sizeof(smd);
const short sDED = sizeof(DED) / sizeof(smd);
const short sDEA = sizeof(DEA) / sizeof(smd);
const short sDEM = sizeof(DEM) / sizeof(smd);
Allerdings nicht so elegant wie es in Java (C++) möglich ist