main.cpp 239 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 #include <cstdlib> #include <utility> #include <cmath> int main(int argc, char **argv) { std::size_t f = argc; f = std::abs(argc); f = std::div(argc * 2, argc).quot; std::swap(f, f); return f; // Set break point at this line. }