1 | #include <stdio.h> |
2 | |
3 | |
4 | int f1 (char *s); |
5 | int f2 (char *s); |
6 | int f3 (char *s); |
7 | |
8 | |
9 | // We want f1 to start on line 20 |
10 | int f1 (char *s) |
11 | { |
12 | return printf(format: "f1: %s\n" , s); |
13 | } |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | // We want f2 to start on line 30 |
20 | int f2 (char *s) |
21 | { |
22 | return printf(format: "f2: %s\n" , s); |
23 | } |
24 | |
25 | |
26 | |
27 | |
28 | |
29 | // We want f3 to start on line 40 |
30 | int f3 (char *s) |
31 | { |
32 | return printf(format: "f3: %s\n" , s); |
33 | } |
34 | |
35 | |
36 | |
37 | |
38 | |
39 | // We want main to start on line 50 |
40 | int main (int argc, const char * argv[]) |
41 | { |
42 | f1(s: "carp" ); |
43 | f2(s: "ding" ); |
44 | f3(s: "dong" ); |
45 | return 0; |
46 | } |
47 | |