Here,I have some Doubt with the output.
Why the Output is same ?
int (*r)[10];
printf("r=%p *r=%p\n",r,*r);
return 0;
Platform- GCC UBUNTU 10.04
|
Here,I have some Doubt with the output. Why the Output is same ?
Platform- GCC UBUNTU 10.04 |
|||||||||
|
|
Because Name of the array decays to an pointer to its first element.
Is an pointer to an array of This pointer to the array must be dereferenced to access the value of each element. Important to note here that: But expressions involving array name sometimes behave as pointer when those being used as name of the array would not make sense. |
|||||||||||
|
|
You would better understand if you look at the following program.
The output is as follows:
Observations / Point(s)-to-note:
Hope this helps! |
|||
|
|
|
Remember that when an expression of type "N-element array of Your situation is a mirror image of the following:
In the Your code has a bit of undefined behavior in that you're dereferencing
In this case, The expression |
|||
|
|