#include int main(int argc, char *argv[]) { for (int i = argc; i > -1; i--) { printf("(%d): %s\n", i, argv[i]); } return 0; }