I'd like to read some data (the number of elements is not known at compile time) from a file and store them in a vector.
I also like the vector to be const, so that I am sure my data will not be overwritten by operations I mean to do with them.
What is the correct technique I should use to push_back() data in a const vector?