1.

Given a class named Book, which of the following is not a valid constructor?

A. Book ( ) { }
B. Book ( Book b) { }
C. Book ( Book &b) { }
D. Book (char* author, char* title) { }
Answer» C. Book ( Book &b) { }


Discussion

No Comment Found