#include <stdio.h>
void main(){
    int a[2][3]={{-3,14,5}, {1,-10,8}};
    int b[]={a[0], a[1]};
    int *p = b[1];

    printf("d", b[1]);
    printf("d", *(--p -2));
    printf("%d\n", *(*(a+1)+1));
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: