I'm trying to solve the difference between three following declarations in c++. I appended my guesses:
const float *x[4]- 4-element array of pointers on arrays of constant floatsconst float (*x)[4]- I'm confused here... is it the same as above?const float *(*x)[4]- the same as above but "on arrays of arrays of constant floats"
Any help/explanation will be appreciated.
cdecland don't look back.