Array of Pointers & Pointer to an entire array
Lets take it by an example: int *p[N]; , where N is any integer number is a declaration for an array of N pointers of type int. This means that if we declare as:int *p[5]; then, p[0], p[1]. … ,p[4] will all be pointers of type int, ie,,…
