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