int main()
{
int a[3]={1,10,20};
printf("%u %u %u \n" ,&a,a,&a[0]);
return 0;
}
This prints the same value for all three. I understand that a and &a[0] is same but how is &a also same?
This prints the same value for all three. I understand that a and &a[0] is same but how is &a also same? |
||||
|
|
|
For maximum compatibility you should always use When the name of an array is used in an expression context other than as the operand to This means that |
|||
|
|
My C is rusty, but so far as I know, &a is the address of the beginning of the array, which will correspond exactly to &a[0] since the beginning of the array IS the first element. Again, rusty with C so I'll defer to someone with better expertise. |
|||||
|
|
The fact that &a happens to be the same as a in this case is a consequence of the fact that a is statically sized. If you made a a pointer to an array, then it would be a different number while the other two gave you the same result. For example:
An example output is:
|
|||
|
|
|
This happened because (I am mostly speculating here) in C, it was considered useful and desirable to (a) be able to modify the contents of a passed-in array; (b) not have to copy entire arrays onto the stack when calling a function. So C lies to you and puts a pointer to the original array onto the stack instead. Since the syntax is the same, you never really notice the difference - when you write |
|||
|
|
|
In C, the name of the array points to the very first element of that array. So by stating |
|||
|
|