Where should I store the file that I want to read. I'm using xcode (on a mac) and doing c++.
the code for one of my functions follows - I'm always getting file not found
iFile.open(inputFile);
if (!iFile.good())
{
cout << "file not found";
}
while (getline ( iFile, line))
{
oFile << line;
}
iFile.close();