End Google Ads 201810 - BS.net 01 --> Hello. I would like to create an alias to an array of pointers, but don't know the syntax for such an operation. For example, to create an alias, "b", to an integer, "a", I would do the following:
int a;
int &b(a);Here changing either b or a also modifies the other. However, how do I do this if the type of a is an array of double* const, as in the following:
double* const a[2];
double* const (&b)[2](a);
Is the second line doing what I want it to, and creating an alias for a? If this is not correct, does anyone know how to do this? Thanks,

Sounds like somebody's got a case of the Mondays

-Jeff