#include "Book.h" int main() { Book b1( "Programmazione in C++" ); Book b2( "Standard Template Library" ); cout << b1.title() << endl; cout << b2.title() << endl; cout << Book::numberOfBooks() << endl; }