Term of the Moment

computer generations


Look Up Another Term


Definition: argc


(ARGumentC) In a C program, the variable that contains the number of parameters (argument count) added to the command line when the program was run. If argc is greater than 0, then the contents of the argument variables (argv[1], argv[2], etc.) are evaluated. See argument.