**Write a C++ program that will make use of the following structure and The typedef Statement:
typedef int ArrayType[MaxSize];
The structure is the OneDArray structure, which contains the following data items:
a- Name of array.
b- Size of array.
Use dynamic memory allocation (dynamic one-dimensional array) for storing positive numbers between 1 and 99 entered by the user. Then print the product and sum of array elements.
Your program must define and use the following functions:-
void PrintArray(OneDArray structure);
void PrintProd_Sum(OneDArray structure);**