
How to use a pointer to a pointer to an int
Question: How do you use a pointer to a pointer to an int?Like this: ————–int **IntPtr;————– How do you access the value “underneath” two pointers? Answer: You can deference a pointer to a variable using an asterisk (*). You can double up asterisks to dereference a pointer to a pointer