// test template.cpp #include "stdafx.h" #include "iostream" #include "conio.h" using namespace std; template void change(T &x,T &y,T &z) { T temp; temp=x; x=y; y=z; z=temp; } int main() { int a,b,c; cout<<"be name khoda \n\n"; cout<<"Enter A = "; cin>>a; cout<<"Enter B = "; cin>>b; cout<<"Enter C = "; cin>>c; cout<<"\n"; change(a,b,c); cout<<"A = "<