template class Array { int size; T * data; public: Array(int s, T init) { size = s; data = new T[size]; for(int i=0; i