Let's say I have an array of char named arrayAlpha and it contains a C string. How may I copy this C string into another array of char? Let's say the second array is called arrayBeta.
char arrayAlpha[]; // Is this the first step?
char temp; // Do I create a temp variable?