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 (
The easiest way is probably
b=a
although a solution with memcpy() will also work.
memcpy()