#include "stdafx.h" #include #include #include using namespace std; template void swap(t &x,t &y) { t temp=x; x=y; y=temp; } void fun(int a,int b,float c,float d) { cout<<"a and b before swaping :"<>a>>b; cout<<"Enter C,D values(float):"; cin>>c>>d; fun(a,b,c,d); } int _tmain(int argc, _TCHAR* argv[]) { return 0; }