Consider the arrays.cpp file. It calls functions declared in createArrays.h to dynamically allocate and print out several arrays. Your task is to create the createArray.h and createArray.cpp files and define the createArray() and printArray() functions such that they work with arrays.cpp.\\nSANTA BARBARA · SANTA CRUZ\\n 1\\nIn createArray(), the first parameter gives the size of the array; if the size is invalid (less than 1) you should print an error message and return instead. If the size is valid, dynamically allocate the array and initialize its elements with the Fibonacci sequence.\\nIn printArray(), simply print out each element separated by a space. Remember to check if the pointer is not null.