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 need to use pointer to array, after that its easy to access its members
void ReadFile(Items * items);
should work.