I\'m having trouble passing an array of structs to a function in C.
I\'ve created the struct like this in main:
int main() { struct Items {
You pretty much have to use pointers for this. You function would look like this:
void ReadFile(Items * myItems, int numberOfItems) { }