brintos

brintos / llvm-project-archived public Read only

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