Passing 2-d array to function

i tried to create this programm

#include
#include
int BiggestEntry(int arr[3][4]);
void main()
{
clrscr();
int a,b,x[3][4]={12,32,43,5,1,14,25,60,16,23,67,97},max;
for(a=0;a<3;a++)

for(b=0;b<4;b++)
max=(x[3][4]);
cout<<“Biggest entry is=”

You’ll get better answers if you format and articulate your question better.

Anyway, one way to pass a 2D array is:

void BiggestEntry(int bar[][4]);