So my professor gave me (where x is a C executable):
$ ./x y z w
He said the memory size of argv in int main(int argc, char **argv) is 48 bytes, including itself.
Can someone help explain this to me?
|
feedback
|
|
There are four strings, requiring a total of 10 bytes (including the null terminators).
There are five pointers to strings (remember that So I count 58 bytes in total. (This becomes 34 bytes on a 32-bit platform.) | |||
|
feedback
|
|
By my calculations, that leaves 40 bytes in Edit: As someone else suggested, | ||||
feedback
|
|
The size of argv is exactly
argv : [ | | | | | | | ] pointer to values of type char*
\-------V-------/
> argv[0] : [ | | | | | | | ] pointer to char ==> [.|/|x|0]...
> argv[1] : [ | | | | | | | ] pointer to char ==> [y|0]...
> argv[2] : [ | | | | | | | ] pointer to char ==> [z|0]...
> argv[3] : [ | | | | | | | ] pointer to char ==> [w|0]...
> argv[4] : [0|0|0|0|0|0|0|0] NULL pointer
So, at least 8 + 5*8 + 10 >= 58 bytes
Or, if you prefer pointers 4-bytes long
at least 4 + 5*4 + 10 >= 34 bytes
| |||
|
feedback
|
|
Technical answers aside, I think that your professor wants to help you understand how arguments are passed to your C program, and how variables are stored in memory. The size of the memory is really just used to illustrate the point. The key things to understand are as follows:
| ||||
|
feedback
|
argvis equal tosizeof(char**), which is typically equal to (and never bigger than)sizeof(void*). I imagine you (or your professor) actually meant something else. – Kerrek SB Dec 19 '11 at 15:49