Define array of pointer
Answers
Answered by
1
In computer science, a pointer is a programming language object, whose value refers to (or "points to") another value stored elsewhere in the computer memory using it's memory address.
A pointer references a location in memory and obtaining the value stored at that location is known as dereferencing the pointer.
Answered by
0
it declares a ptr as an array of max integer pointers. thus each element in ptr holds a pointer in an int value.
Similar questions