to what does *argv usually correspond

Multiple choice question

In the following declaration of main, to what does *argv usually correspond?

int main(int argc, char *argv[])

wrong

The first argument passed into the program

correct

The program name

wrong

You can't define main like that