Write a C++ program to implement an array using class templates. Implement the following operations: Adding two arrays, finding the max and min in an array. code example
Example: how to write a template c++
template <class myType>
myType GetMax (myType a, myType b) {
return (a>b?a:b);
}