Array/Pointer Equivalence
char a[] = "Hello,"; char *p = "world!";
a[3]
is
'l'
p[3]
is also
'l'