22 lines
206 B
C++
22 lines
206 B
C++
![]() |
/*
|
||
|
Rafay Ahmad
|
||
|
23I-2526
|
||
|
*/
|
||
|
#include <iostream>
|
||
|
using namespace std;
|
||
|
|
||
|
template <class T>
|
||
|
void swapValues(T& a, T& b){
|
||
|
a = b;
|
||
|
b = temp;
|
||
|
}
|
||
|
|
||
|
int main(){
|
||
|
|
||
|
int a = 5;
|
||
|
int b = 3;
|
||
|
|
||
|
|
||
|
|
||
|
return 0;
|
||
|
}
|