If i want to copy the data from one spot in the structure to another and copy data from one structure to another.

Code:
Struct * Struct_1;
Struct * Struct_2;

Struct_2[2] = Struct_2[1];
Struct_2[1] = Struct_1[1];
This gives me an error during runtime.

Suggestions?