$4.2/1 - \"An lvalue or rvalue of type “array ofN T” or “array of unknown bound of T” can be converted to an rvalue of type “pointer to T.” The result
Would this stand a chance to demonstrate Array Rvalue?
int main(){ int buf[10][10]; int (*p)[10] = buf; int (*p2)[10] = p; // LValue to Rvalue conversion of Array type 'p' }