What is the difference b/w
struct {
float *p;
}*ptr=s;
*ptr->p++
and
(*ptr->p)++;
I understand that the former points to the next address while the latter increments the value by 1 but I cannot get how it is happening.....
|
|
|
|
|
|
|
It's all about precedence. In the first example you are incrementing the location that In the second example you are dereferencing |
||||||||||||
|
|
|
Due to C operator precedence,
is equivalent to
so it actually increments the pointer, but dereferences the original address, due to the way postfix ++ works. However, since nothing is done to the dereferenced address, the statement is equivalent to
|
|||
|
|
|
|
It might be better to write it as follows:
This way you have a named struct containing a float. It is named S. You then declare an S pointer called ptr.
in 1) you increment the pointer by sizeof( S ). |
||