1 2 3 4 5 6 7 8 9 10
int add(int a, int b) { // Break here return a + b; } int main() { int i = 1; int j = 2; return add(i, j); }