Assuming I have a structure such as:
typedef struct {
    int a;
    int b;
} TEST1_T;
TEST1_T test1;
I can reference test1.a with ((int**)&test1)[0]
And if i have a structure such as:
typedef struct {
    int a[15];
    int b[20];
    int c[30];
} TEST2_T;
TEST2_T test2;
How can i reference test2.c with it's order in struct like reference test1.b with ((int**)&test1)[1]?
 
    