I have a big file full of integers that I\'m loading in. I\'ve just started using C++, and I\'m trying out the filestream stuff. From everything I\'ve read, it appears I c
const int HRSIZE = 129951336/sizeof(int); //The size of the table
int bhr[HRSIZE]; //The table
int main(int argc, char *argv[])
{
ifstream fstr;
/* load the handranks.dat file */
std::cout << "Loading table.dat...\n";
fstr.open("table.dat");
for (int i=0; i