performance/ocw/bit-hacks/hacks.cc

12 lines
150 B
C++

#include <iostream>
int main() {
int x = 123;
int y = 123123;
std::cout << x;
std::swap(x, y);
std::cout << y;
return 0;
}