Write a short note of
1) pointers to pointers
2) arrays to pointers
3) pointers to void
4) pointers to functions
Answers
Answered by
3
Answer:
1. A pointer to a pointer is a form of multiple indirection, or a chain of pointers. Normally, a pointer contains the address of a variable. When we define a pointer to a pointer, the first pointer contains the address of the second pointer, which points to the location that contains the actual value as shown below.
Similar questions