As the question mentions, how do command line arguments work in C(in general any language). The logical explanation I could think of is, the operating system sets some kind of environmental values for the process when it starts. But if it's true I should not be able to access them as argp[i] etc(I modified the main to expect the 2nd argument as char **argp instead of **argv). Please explain.
|
feedback
|
|
I'll try to explain the implementation a bit more than other answers. Under the shell, you type | |||||||||||
feedback
|
|
What ever the name you give to main arguments, what is important is their type and order. To get env vars use this closure:
Is this what you're wondering? | |||
feedback
|
|
In a C program the OS creates an array of pointers to zero terminated strings. The count is passed as Environment variable names are separate from names of variables in your program. To access environment variables use Update: You wanted to know how these are made available to the program. It is the OS which does that. But before the OS can do so, the program invoking your executable -- the caller -- gets to process your command line. Usually the caller is a shell ( | ||||
|
feedback
|
argvis just a convention, you could name itFOOBARif you want) – nos Feb 21 at 10:42mainare just like the arguments to any other function. The names doesn't really matter, you can even have different argument names in function prototypes and the actual function, as long as the types matches. Where the arguments tomaincomes from doesn't really matter, just treat them as any integer and array-of-pointers (or pointer-to-pointer in your case). – Joachim Pileborg Feb 21 at 10:53