Point and Array Convert Problem

In this statement,"A[max][max]" of type "int",being converted to "pointer toarray[20] of int".(cvtdiftypes)

Please help me!

#include <stdio.h>
#include <stdlib.h>

int m,k; 
const int max =20;
int A[max][max];

//****************************************************
//     Input Matrix 
//****************************************************

void inMatrixAA(int AA[max][max], int row, int col)
{     int i,j; 
        for( i = 0; i<row; i++)
           {
               for( j = 0; j<col; j++)
                 scanf("%d",&AA[j]);
           }   
}

//*****************************************************
//   Print Matrix 
//***************************************************** 

void prMatrix( int AA[max][max], int row, int col) 
{       int i,j;
           for(i =0; i<row; i++)
              {
                 for(j = 0; j<col; j++) 
                   printf("%d\n",AA[j]);
              }
}

int main(int argc,char *argv[])
   {
       int ii,jj;
        for (ii = 0; ii<max;ii++)
         {
           for(jj =0;jj<max;jj++)
            {
              A[ii][jj] = 0;
            }
         }            
         printf("Enter values for m, k");
       scanf("%d",m,"%d");
       printf("Input Matrix A");
       inMatrixAA(A[max][max], m, k);
       printf("Print Matrix A");
       prMatrix(A[max][max], m, k);
   
   }