Question
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
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started