Can anyone tell me what's wrong with the function of this two-dimensional array?

can anyone tell me what"s wrong with the function of this two-dimensional array?
does not work properly.

< H1 > include < stdio.h > < / H1 >

int (* t) [3];

void print(t){
int i, j;
for (i = 0; i < 3; iPP){
    for (j = 0; j < 3; jPP){
        printf("%d",t[i][j]);
    }
    printf("\n");
}

}

int main () {

int v[3][3] = {
    {1, 2, 3},
    {4, 5, 6},
    {7, 8, 9}
};
     print(&v[0]);
     return 0;

}

C
Jul.08,2021

posting the error will help solve the problem

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3b4f4-2b9ff.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3b4f4-2b9ff.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?