#ifndef EXAMPLE_H #define EXAMPLE_H template void printArray(const T *array, const int cnt) { for (int I = 0; I < cnt; I++) cout << array[I] <<" "; cout << endl; } #endif