I am having problems trying to serialise a vector (std::vector) into a binary format and then correctly deserialise it and be able to read the data. This is my first time us
You're using the address of the vector. What you need/want is the address of the data being held by the vector. Writing, for example, would be something like: