#include "sorts.h" #include "sorts.cpp" #include //template void ExchangeSort(X* data,int size); void main() { int i[10]={5,8,2,3,26,65,78,64,21,10}; BubbleSort(i,10); //if you want to use another algorithm please write // another name of a function . cout<<"\n"; for(int k=0; k<10; k++) cout<