It\'s been a long since I don\'t use C language, and this is driving me crazy. I have an array of structs, and I need to create a function which will copy one array to another (
That should do it:
memcpy(&b, &a, sizeof(a));
EDIT: By the way: It will save a copy of a in b.
a
b