Using C
Please comment
. Part A: Create a program representing a model train o Create structs to model a train. You will need: A train struct to represent the whole train that contains a pointer to the first train car; A car struct for each train car with: (1) cargo weight (this can be an int) and (2) a pointer to the next car so you can access each car; A way to
OR
OR