I tried through different ways to copy an array pointer to another one, without any success. Here are my attempts, with the associated error message.
typedef
You cannot assign one array to another using the assignment operator, e.g. a = b, because an array doesn't know the size of itself.
a = b
This is the reason why we cannot assign one array to another using the assignment operator.