Excerpt from "A book on C"
# include <studio.h>
int main(int argc, char *argv[])
{
.....
argc: argument count; its vlaue is the number of arguments in the command line that was used to execute the program.
argv: argument vector; it is an array of pointers to char.
No comments:
Post a Comment