1 | int d_init() |
---|---|
2 | { |
3 | return 456; |
4 | } |
5 | |
6 | int d_global = d_init(); |
7 | |
8 | int |
9 | d_function () |
10 | { // Find this line number within d_dunction(). |
11 | return 12345; |
12 | } |
13 |
1 | int d_init() |
---|---|
2 | { |
3 | return 456; |
4 | } |
5 | |
6 | int d_global = d_init(); |
7 | |
8 | int |
9 | d_function () |
10 | { // Find this line number within d_dunction(). |
11 | return 12345; |
12 | } |
13 |