try replacing the 'Other' function with this one.


void other()
{
char FirstName[30], LastName[30],ch;
int Age;
char FileName[20];
cout << "Enter the name of the file you want to open: ";
cin >> FileName;
ifstream Students(FileName);
Students >> FirstName >>ch>> LastName >>ch>> Age;

cout << "\nFirst Name: " << FirstName;
cout << "\nLast Name: " << LastName;
cout << "\nEnter Age: " << Age;

cout << "\n\n";
system("pause");
}