aarrggvv -- C Language

Argument passed to main()
cchhaarr *aarrggvv[];

aarrggvv is  an abbreviation  for ``argument  vector''.  It is  the traditional
name for a  pointer to an array of string  pointers passed to a C program's
mmaaiinn function; by convention, it is  the second argument passed to mmaaiinn. By
convention, aarrggvv[00] always points to the name of the command itself.

_E_x_a_m_p_l_e
This example  demonstrates both  aarrggcc and  aarrggvv[], to recreate  the command
eecchhoo.

main(argc, argv)
int argc; char *argv[];
{
    int i;

    for (i = 1; i < argc; ) {
        printf("%s", argv[i]);
        if (++i < argc)
            putchar(' ');
    }

    putchar('\n');
    exit(0);
}

_S_e_e _A_l_s_o
aarrggcc, CC llaanngguuaaggee, eennvvpp, mmaaiinn()
ANSI Standard, section 5.1.2.2.1
