Lets say I have an array = {2, 3, ABCD}
First, I need to make the third element equal to a new Array. And I know char newArr [] = array [2] wont work, so how do I go about this?
Second, I need to print out the characters of the newArr one by one. So my output should be A B C D
They should be separated from each other. I know how to do this in java, but I have no idea what the syntax is in C. Your help is greatly appreciated.