Task
Allocation and deallocation of mono-dimensional and bi-dimensional arrays represented by pointers
a. Declare and implement a function CreateArray(...) that returns a pointer to an array of n integers.
b. Declare and implement a function DeleteArray(...) that takes and deletes an array of integers.
c. Declare and implement a function CreateMatrix(...) that returns a pointer to an array of arrays of n × m floats.
d. Declare and implement a function Deletematrix(...) that takes and deletes this kind of matrix.
e. Declare and implement a function DisplayMatrix(...) that displays the address of the matrix of floats in the memory and all its elements.