Array name without []s is a constant pointer to that array. You can't copy things by assigning pointers. Array name with [x] returns the xth element of that array. You only copy one element with your last line (an invalid one too).
To copy an array you need to use memcpy, std::copy or simply a for loop.