Command Line Arguments - Programming

Q1:

If the different command line arguments are supplied at different times would the output of the following program change?
#include<stdio.h>

int main(int argc, char **argv)
{
    printf('%d\n', argv[argc]);
    return 0;
}

A Yes

B No

ANS:A - Yes

No answer description is available. Let's discuss.