====== C - C++ Templates - Function Template - Swap ====== #include #include template void swap(T &a,T &b) { T temp; temp=a; a=b; b=a; } template void fun(T1 x[],int n) { int i,j; for(i=0;i=0;i--) { cout<