class Book { private: const std::string title; const int pages; public: Book() { title = "Diary"; // Error: const variables can't be assigned to pages = 100; // Error: const variables can't be assigned to };