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 {
Have you tried to declare you function like this:
void ReadFile(struct Items[])
Might be helpful: http://www.daniweb.com/software-development/cpp/threads/105699