Is there anyway I can move the pointer in the array. So, like you move where the pointer is pointing at in the array. For files, I know that you can use fseek with something like fread to only copy from a specific location.
I'm trying to copy parts of an array into different files. With fwrite, it doesn't give the option to start from a specific location, so I'll need to move the pointer to somewhere in the array, then copy a part of the array into a file.
&array[index]to get a pointer to an element of the array.