Declare a class called movie
with the following members,
Doda members:
Name of the movie
Name of the direction
Name of the produces
Grading
Member function:
To instalize the data to members
• To display the movie details
write
a program
to create an array
of 5 objects.
Answers
Answered by
1
class movie
{
char movieName[20];
char director Name[20];
char producerName[20];
char Grade;
public:
void input();
void output();
};
Similar questions