118
Pointer Arithmetic
(cont)
Pointer-based scan written in more typical style
Note: because of pointer/array connection
a[i] == *(a+i)
specifically,
a[0] == *a