×
×
Correct!
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 @(3) @(4);
return 0;
}
struct Car {
char brand[50];
char model[50];
int year;
};
int main() {
struct Car car1;
return 0;
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 39 exercises.
Are you sure you want to continue?