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