reation between pointer and array
Answers
Answered by
3
Pointers and arrays are synonyms in terms of how they used to access memory .but the important difference between them is that ,a pointer variable can take different addresses as value whereas in case of Array ,it is fixed .
I hope it will help you
please mark as brainlist
Answered by
0
Answer:
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
Similar questions