as we know to pass an array to a function the syntax is

datatype function_name(type array_name[][size2],int size1,int size2).
this is for a 2D single array.So what about if we want to pass multiple 2D array?whether it shall be like this

datatype function_name(type array_name1[][size2],int size1,int size2,type array_name2[][size2],int size1,int size2)

or shall it be some other type.Please help.