Everytime I create a project (standard command line utility) with Xcode, my main function starts out looking like this:
int main(int argc, const char * argv[])
What's all this in the parenthesis? Why use this rather than just
int main()?
|
main receives the number of arguments and the arguments passed to it when you start the program, so you can access it. argc contains the number of arguments, argv contains pointers to the arguments. argv[argc] is always a NULL pointer. The arguments usually include the program name itself. Typically if you run your program like
If you run your program like
|
|||||||||
|
|
These are for using the arguments from the command line - argc contains the number of arguments on the command line (including the program name), and argv is the list of actual arguments (represented as character strings). |
|||
|
|
|
These are used to pass command line paramters. For ex: if you want to pass a file name to your process from outside then
the command line "filename.txt" will be stored in argv[], and the number of command line parameter ( the count) will be stored in argc. |
|||
|
|
|
Although not covered by standards, on Windows and most flavours of Unix and Linux,
The last one is similar to But it contains the environment variables, e.g. |
|||||||||
|
int main(int argc, char *argv[])(or equivalent orint main(void)) but not your version withargvmodified withconst(that's an extension provided by your implementation). If you want your code to be portable to other implementations, remove theconst. – pmg Sep 17 '10 at 9:39argcandargvare anyway, just replace them withvoid. – David Thornley Sep 20 '10 at 14:27