#include "stdstuff.h" #include "book.h" int main() { book aBook, bBook; setBook(123,"SYSC 2002 Notes",aBook); setBook(345,"My Diary",bBook); cout << "The 3rd character in aBook's title is: " << getBookTitle3rdChar (aBook) << endl; cout << "bBook's ISBN is: " << getBookIsbn(bBook) << endl; if (compareBooks(aBook,bBook)) cout << "The two books have the same ISBN.\n"; else cout << "The two books do not have the same ISBN.\n"; aBook.title = "XYZ"; bBook.isbn = 123; cout << "The 3rd character in aBook's title is: " << getBookTitle3rdChar (aBook) << endl; cout << "bBook's ISBN is: " << getBookIsbn(bBook) << endl; if (compareBooks(aBook,bBook)) cout << "The two books have the same ISBN.\n"; else cout << "The two books do not have the same ISBN.\n"; pause(); return 0; }