Răspuns:
Explicație:
#include<iostream>
using namespace std;
struct car{
char make [20];
char model [10];
int year;
float price;
}c;
int main()
{
cin>>c.make;
cin>>c.model;
cin>>c.year;
cin>>c.price;
cout<<c.make<<", ";
cout<<c.model<<", ";
cout<<c.year<<", ";
cout<<c.price;
}