Ah yes, just tried something else in my testing code,

so I can use the array (display it), but I can't copy from one array to another.

eg:



Code:
char currentArray[10]; //create new array of 10 characters.


void copyArray(char array[])
{

     currentArray = array; //will not work

}
So how do i copy from one array to another?

Regards,

-Kirill