I want to prompt the user for the file name then use that name to open up a file stream. I think I need to make it into a const char or something but I dont really know what that is or how to do so.
cout << "Enter Locations Filename: "<<endl;
cin>> locFilename;
ifstream locations(locFilename);