So I have something like this:
struct cat{
int breed;
enum state status;
...
struct{
int catNumber;
...
} feederOperations[MAX_FEEDER];
}cats[MAX_CATS];
Don't worry if the code deosn't make sense, all I'm wondering is how should/ can I declare a new 1d array of the inside structure?
feederOperationsor any other data type you need.