#include int main(int argc, char **av) { for (int i = 0; i < argc; i++) { printf("av[%d]= %s\n", i, av[i]); } }