This is the point from ISO :Standard Conversions:Array-to-pointer conversion: $4.2.1
An lvalue or rvalue of type “array of N T” or “array of unknown bound of T” can be converted to an rvalue of type “pointer to T.” The result is a pointer to the first element of the array.
Can any one explain this, if possible with an example program.
I seen these links already, but i am unable to understand:
I think I may have come up with an example of rvalue of array type
See Question&Answers more detail:os