Posts by well • 11 points
1 post
-
-1
votes1
answer49
viewsQ: How do I associate a car with a driver in that code that I made
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <conio.h> #include <locale.h> typedef struct Motorista{ int driver_id; // id do motorista int idade;…