You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Car ford = {.make = "Ford", .model="Aspire", .year=2016, .color="Red"};
printf("Welcome to our Car World\n");
print_car(&ford);
return 0;
}
void print_car(Car *car) {
printf("This %s model of car, which is of %s color, was purchsed in %d year, and is made by %s company", car->model, car->color, car->year, car->make);