Accepting command line arguments in C using argc and argv
BY ALEX ALLAIN
In C it is possible to accept command line arguments. Command-line arguments are given after the name of a program in command-line operating systems like DOS or Linux, and are passed in to the program from the operating system. To use command line arguments in your program, you must first understand the full declaration of the main function, which previously has accepted no arguments. In fact, main can actually accept two arguments: one argument is number of command line arguments, and the other argument is a full list of all of the command line arguments.
THERE PROGRAM IS NEXT LEVEL
TECHNICALCLA.BLOGSPOT.COM
Comments
Post a Comment