argv1
argv1 is a term used to refer to the first command-line argument passed to a program, excluding the program name. In many languages, the arguments provided by the user are collected in an array or list, and argv1 denotes the element at index 1 of that collection in languages with C-style indexing.
In C and C++, command-line arguments are typically accessed via main with a signature such as int
Other languages use similar concepts with different conventions. In Java, the first user argument is args[0]