How can I copy the contents of one array into three other arrays? Would it make sense to create three other arrays and fill them with the values of my original or is that inefficient? Could I use three pointers to each point to the first element in my original array?
Can anyone post an example of how this could be accomplished? Thanks.
Then you're expected to actually copy the values.
Yes, it's inefficient and there are usually better methods in real use cases, but educational exercises rarely have any point, let alone practical applicability.