| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main (int argc, char const *argv[]) |
| 4 | { |
| 5 | int pass_me = argc + 10; // Stop here to get started. |
| 6 | printf(format: "This is the zeroth stop\n" ); |
| 7 | printf(format: "This is the first stop\n" ); |
| 8 | printf(format: "This is the second stop\n" ); |
| 9 | printf(format: "This is the third stop\n" ); |
| 10 | printf(format: "This is the fourth stop\n" ); |
| 11 | printf(format: "This is the fifth stop\n" ); |
| 12 | printf(format: "This is the sixth stop\n" ); |
| 13 | printf(format: "This is the seventh stop\n" ); |
| 14 | printf(format: "This is the eighth stop\n" ); |
| 15 | printf(format: "This is the nineth stop\n" ); |
| 16 | |
| 17 | return 0; |
| 18 | } |
| 19 | |