InterviewSolution
Saved Bookmarks
| 1. |
Declare a class called movie with the following members,Doda members:Name of the movieName of the directionName of the producesGradingMember function:To instalize the data to members• To display the movie detailswritea programto create an arrayof 5 objects. |
|
Answer» ovie{char MOVIENAME[20];char director NAME[20];char producerName[20];char Grade;public:void input();void output();}; |
|