
Patrick B. answered 10/16/19
Math and computer tutor/teacher
1)
Objects and data structures of practically unlimited size can be passed via pointer which only uses 4-8 bytes on the call stack
2) Never be afraid to use pointers almost any time you want. As stated, pointers are the most
convenient way to access data structure
3) ptrArray = &A[0];
ptrArray++ accesses the next item in the array