Thanks Sandeep,
But I think for doing this the data will be const to which the
pionter points to instead of the pointer itself. so that I wont be
able to assign by array(whose data can change) to this pointer.
One way is that I can assign my array during declaration
short ** const a = arr;
but my array is not fixed "a" may be the reference of arr or arr1 it
will depend on the input "z".
Regards
Debabrata
On 27 Feb, 19:04, Sandeep Mahapatra <
sandyisc...@gmail.com> wrote:
> Hello Debabrata,
>
> Try this
>
> *short const **a;*