Strings as arrays, as pointers, and string.h
Now, we can use labelPtr just like the array name label. So, we could access the third character in the string with: printf("Third char is: %c\n", labelPtr[2]); It's important to remember that the only reason the pointer labelPtr allows us to access t...