Code:
#include <stdio.h>

int main()
{
    int multid[5][5];
    int **multip;
    
    multip = multid;
    
    printf("%d", multip[1][1]);
    
    return 0;
}
here is my code. how can i remove the warning message?