0
Write a C programme that commands a user to input a random number of animal types with there characterisics and outputs it after the user is done using vectors
The animal description are defined within a struct.
1 Réponse
0
typedef struct dynamic_vector { int* data; struct* animal; size_t limit; size_t current; } vectorv;