Use std::vector:
std::ifstream inFile(fileName);
std::vector<int> ints{
std::istream_iterator<int>(inFile),
std::istream_iterator<int>()
};
std::vector provides dynamic storage, so it resizes as needed to fit what it holds. All I do is utilize the constructor that takes a pair of iterators and loops through them, beginning to end, and copies the values into the vector. The iterators I'm using will read integers from the file until one can't, as is the case when the end of file is reached. I also use uniform initialization to avoid the most vexing parse, an easy mistake to make when using this form of the constructor.
std::vector<std::string>orstd::vector<int>– sgar91 Jan 4 at 17:56eofis just almost never correct. – Kerrek SB Jan 4 at 18:01sizeof(int). – Useless Jan 4 at 18:06