Chat with us, powered by LiveChat

Write a program that uses a structure named Movie Data to store the following information about a movie:

C++ Programming Movie Data

Movie Data

Write a program that uses a structure named Movie Data to store the following information about a movie:

Title

Director

Year Released

Running time (in minutes)

Include a constructor that allows all four of these member data values to be specified at the time a Movie Data variable is created.

The program should create two Movie Data variables and pass each one in turn to a function that displays the information about the movie in a clearly formatted manner.

Pass the Movie Data variables to the display function by value.