12345678910111213141516171819202122
struct product{ string name; double price; } myProduct; int main() { myProduct.name="Movie"; myProduct.price=19.99; cout<<myProduct.name<<" "<<myProduct.price<<endl; cout<<"Change the values pls"<<endl; getline(cin,myProduct.name); cin>>myProduct.price; cout<<myProduct.name<<" "<<myProduct.price<<endl; }