// How does one modifiy the lookUpBook function to accept a book title as an
// incoming parameter?
// I know it is 4:45 AM,
// but C++ is fun, and hard at the same time.
// And I think the C++ reading combined with the rich LCD colors on my
// flat panel are starting to
// mess with my eyes, even though I am wearing glasses.
// - I need a break -
void lookUpBook(char bookname[])
{
cout<<"\t\t\tYou selected Look Up Book.";
//add code here to use the bookname
}
the call is:lookUpBook(/*name of book here*/);