Hello - If the count argument was to many bytes for an array element, say element 0, would the remaining bytes flow to array element 1, and so on? Thank you in advance.
If count exceeds the number of bytes of the first element of the array, yes, it will alter the bytes of the next element for sure. But note that the behavior is not governed by the pointer type, simply by the amount of bytes that you request to be overwritten.