Computer Science, asked by delnabenny2, 9 months ago

what is the relation between array and pointers​

Answers

Answered by ishaadhana
1

Explanation:

An array is represented by a variable that is associated with the address of its first storage location. A pointer is also the address of a storage location with a defined type, so D permits the use of the array [ ] index notation with both pointer variables and array variables.

Answered by siddhiv63
2

Answer:

An array is a collection of elements of similar data type whereas the pointer is a variable that stores the address of another variable. An array size decides the number of variables it can store whereas; a pointer variable can store the address of only one variable in it.

Similar questions