Consider the following declarations :
const float** b;
const float* const* c;
float* const* d;
First off all I want to make sure that :
b
is apointer
topointer
toconst float
.c
is apointer
toconst pointer
toconst float
.d
is apointer
to aconst pointer
tofloat
.
Now my question is how can I initialize each pointer using new operator
?