I want to create a vector of array
vector<BYTE[6]> cKey;
BYTE keyTemp[6];
memset(keyTemp, 0xFF, sizeof(keyTemp)); // Key is FFF...FF
cKey.push_back(keyTemp);
But in push_back function, that show error
Error C3074: an array can only be initialized with an initializer-list
How to initialize a vector of array ?