brintos

brintos / llvm-project-archived public Read only

0
0
Text · 164 B · f4f8c66 Raw
10 lines · cpp
1 2int multiply(int x, int y) {3  return x * y; // breakpoint 14}5 6int main(int argc, char const *argv[]) {7  int result = multiply(argc, 20);8  return result < 0;9}10