Suppose struct_name is the name of a struct I've defined, and array is a member in the struct defined as char array[o]
what does the following line produce? (*struct_name).array
an address location?
|
|
Suppose what does the following line produce?
|
||||||
|
|
|
yes (assuming struct_name is a pointer to your struct, otherwise the dereferencing just doesn't make sense) btw, why not do struct_name->array ? |
||
|
|
|
|
If you've defined
You want
You want If you've defined
Then you don't know what you want. |
||
|
|