Concept Flow - Pointer arithmetic
Declare pointer p
Assign address of array element to p
Perform arithmetic: p + n
Pointer points to new element
Dereference *p to access value
Use or print value
End or repeat with new pointer
Pointer arithmetic moves the pointer to different elements in an array by adding or subtracting integers, then accessing the value at the new location.