#include "heapsort.h" template void heapsort(T* array, size_t size){ } int main(){ int A[] = {7, 4, 19, 23, 1}; heapsort(A, 5); cout << "A is now sorted\n"; string foods[] = {"apple", "banana", "goat", "turkey", "chocolate", "carrot"}; heapsort(foods, 6); }