void *memset(void *dest, int c, size_t count)
The 3rd argument is the Number of characters or bytes in the array. How would you memset an array of bool
std::fill() should use memset() when possible.
std::fill()
memset()
std::fill(std::begin(bArray), std::end(bArray), value);