I have struct called part_rec, and each one will be recorded in a struct array called Robot_parts[]. I am not sure if i should include (Robot_parts[]) this in the struct part_rec function, since I have to initialize
part_rec Robot_parts[ ] = {{ 7789, "QTI", 4, 12.95},
{1654, "bolt", 4, 0.34},
{6931, "nut", 4, 0.25}};
in main()
I don't know where to declare Robot_parts and if I need [] after the defined members I have in the struct part_rec part (example: int part_num[0]). If I do, I don't know the number value to put in the brackets.