1 | #include <stdio.h> |
---|---|
2 | |
3 | int |
4 | call_me(int input) |
5 | { |
6 | return printf(format: "I was called: %d.\n", input); |
7 | } |
8 | |
9 | int |
10 | main() |
11 | { |
12 | int test_var = 10; |
13 | printf (format: "Set a breakpoint here: %d.\n", test_var); |
14 | return call_me(input: 100); |
15 | } |
16 |