fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. template<typename T>
  5. void swapValues(T &value,T &value2) {
  6. T swap=value;
  7. value=value2;
  8. value2=swap;
  9. }
  10. int main() {
  11. int a=5,b=10;
  12. swapValues(a,b);
  13. cout<<a<<" "<<b<<endl;
  14. double c=4.23,d=5.81;
  15. swapValues(c,d);
  16. cout<<c<<" "<<d<<endl;
  17. char s='A',f='R';
  18. swapValues(s,f);
  19. cout<<s<<" "<<f<<endl;
  20. string str1="hello",str2="world";
  21. swapValues(str1,str2);
  22. cout<<str1<<" "<<str2;
  23. return 0;
  24. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
10 5
5.81 4.23
R A
world hello