dotfiles/.config/Code/User/History/57898c00/Hzrk.cpp

20 lines
195 B
C++
Raw Normal View History

2024-09-09 16:59:28 +05:00
/*
Rafay Ahmad
23I-2526
*/
#include <iostream>
using namespace std;
template <class T>
void swapValues(T& a, T& b){
T temp = a;
a = b;
b = temp;
}
int main(){
return 0;
}