brintos

brintos / llvm-project-archived public Read only

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