/* Rafay Ahmad 23I-2526 */ #include using namespace std; template void swapValues(T& a, T& b){ T temp = a; a = b; b = temp; } int main(){ swapValues(1, 2); return 0; }