#include main(argc, argv) int argc; char *argv[]; { while (argc > 1) { printf("%s\n", argv[1]); argc--; argv++; } exit(0); }