main.cpp 164 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 int multiply(int x, int y) { return x * y; // breakpoint 1 } int main(int argc, char const *argv[]) { int result = multiply(argc, 20); return result < 0; }