Menu
×
×
Correct!
Exercise:Fill in the missing part to create a Car structure:
struct Car {
char brand[50];
char model[50];
int year;
};
Not CorrectClick here to try again. Correct!Next ❯Car { char brand[50]; char model[50]; int year; }; |