✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dado el siguiente código fuente:
int i;
int array[3][2] = {{ 11, 22 }, { 33, 44 }, { 55, 66 }};
int (*p)[2] = array;
for ( i = 0; i < 3; ++i ) {
printf("%d ", (*p)[1]);
++p;
}
Indica la afirmación más correcta: