[Example 1: staticconstint arrs[10]{};
int main(){constint*y = arrs +11; // undefined behavior, creating an out of bounds pointer} — end example]
[Example 2: staticconstint arrs[10][10]{};
int main(){constint(*y)[10]= arrs +11; // undefined behavior, creating an out of bounds pointer} — end example]