What does this program output and show what the parameters a…
What does this program output and show what the parameters are, DO NOT execute the program. char *option) { char *ptr; int idx, i; if (argc > 1) { for (i=0; i < sizeof(option)/sizeof(char*); i++) { ptr = NULL; for (idx=1; idx < argc; idx++) if (!strcmp(argv, option) && (idx+1 < argc)) ptr = argv; if (ptr) { printf("option %s: value %s\n", option, ptr); } } } else { printf("No Parameters!\n"); } return 0; } Command Line: ./test –Z fileA -b fileB –a fileC -Y fileD What is the output of the program: Show what the values in: argc = argv =