brintos

brintos / llvm-project-archived public Read only

0
0
Text · 144 B · 71c854b Raw
11 lines · c
1#include <stdio.h>2 3int4main(int argc, char** argv)5{6  for (int i = 0; i < argc; i++) {7    printf("%d: %s.\n", i, argv[i]);8  }9  return 0;10}11