#include <stdio.h>
void main() {
int a[2][3]={{-3, 14, 5}, {1, -10, 8}};
/*
{-3, 14, 5},
{1, -10, 8}
*/
int *b[] = {a[0], a[1]};
int *p = b[1];
printf("%d ",*b[1]); //a[1], 1 출력
printf("%d ", *(++p)); //-10 출력
printf("%d ", *(--p - 2)); //14 출력
}
To embed this project on your website, copy the following code and paste it into your website's HTML: