1 | #include <stdio.h> |
---|---|
2 | |
3 | // breakpoint set -n foo |
4 | // |
5 | // |
6 | int foo (int value) |
7 | { |
8 | printf (format: "I got the value: %d.\n", value); |
9 | return 0; |
10 | } |
11 | |
12 | int main (int argc, char **argv) |
13 | { |
14 | foo (value: argc); |
15 | printf (format: "Hello there: %d.\n", argc); |
16 | return 0; |
17 | } |
18 |