Menu
×
×
Correct!
Exercise:Fill in the missing parts to create a struct variable of "Car" named "car1" inside
struct Car {
char brand[50];
char model[50];
int year;
};
int main() {
struct Car car1;
return 0;
}
Not CorrectClick here to try again. Correct!Next ❯struct Car { char brand[50]; char model[50]; int year; }; int main() { struct; return 0; } |