I define an intermediary typedef in order to define a reference to a fixed size array.
typedef int CI[0x10];
CI& arr=*(CI*)mypointer;
writing it like that it permits me later on to use countof(arr)
I tried to write it in one statement and bellow is my failed attempt. I know that this is wrong as the "&" should be in both "int" and "[0x10]" and not on arr1 but is it possible to write it in one statement ;
int (arr1&)[classInfoN]=*(CI*)mypointer;