fork download
  1. #include <algorithm>
  2. #include <iostream>
  3.  
  4. int main(void)
  5. {
  6. int a = 3, b = 7;
  7. std::swap(a,b);
  8. std::cout << a << ' ' << b << '\n';
  9. }
Success #stdin #stdout 0s 4320KB
stdin
Standard input is empty
stdout
7 3