//ic210 sec4002 functions and arrays //NOT FINISHED #include #include using namespace std; // Prototypes – add TWO more here void printArray(char *array, int length); char* createArray1(int); void createArray2(int,char*&); int main() { int N = 5; char *array1, *array2; // note need two *'s here!! // Make the arrays. They should be identical array1 = createCharArray1(N); createCharArray2(N, array2); // Print the arrays cout << "Array 1: "; printArray(array1, N); cout << "Array 2: "; printArray(array2, N); return 0; } void printArray(char *array, int length) { for (int i=0; i