Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

make use of pointers for the editMovie and deleteMovie options ** C++ ** #include using namespace std; struct movies_t { string title; string year; bool

make use of pointers for the "editMovie" and "deleteMovie" options

** C++ **

#include using namespace std;

struct movies_t { string title; string year; bool activo; }films[3];

void captureInfo(int i,string title,string year) { films[i].title = title; films[i].year = year; films[i].activo = true; }

void deleteMovie(struct movies_t &movie) { movie.activo=0; cout<<" la pelicula "<

void editMovie(struct movies_t &movie) { cout<<" Enter en el nuevo titulo : "; getline(cin>>ws,movie.title); cout<<"Enter ao: "; cin>>movie.year; } void printMovie(struct movies_t movie) { cout<<" "<

int main(int argc,char *argv[]) {

string title,year; for(int i=0;i<3;++i) { cout<<" Titulo: "; getline(cin>>ws,title); cout<<"Ao: "; cin>>year; captureInfo(i,title,year); } cout<<" ************Lista de peliculas***************"<

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Visual Basic6 Database Programming

Authors: John W. Fronckowiak, David J. Helda

1st Edition

0764532545, 978-0764532542

More Books

Students also viewed these Databases questions