int y[4] = {6, 7, 8, 9}; int ptr = y + 2; printf(%dn, ptr[ 1 ] ); /*ptr+1 == ptr[1]/
What is printed, when the sample code above is executed?
Reveal answer
Fill a bubble to check yourself
int y[4] = {6, 7, 8, 9}; int ptr = y + 2; printf(%dn, ptr[ 1 ] ); /*ptr+1 == ptr[1]/
What is printed, when the sample code above is executed?