编辑代码

#include <stdio.h>
int main () {
    int B[2][3] = { {1,2}, {3,4} };
    int* p[3] = B;

    printf("%d",B);
    printf("%d",p[3]);
}