c program on how to display the elements in a matrix format

#include<stdio.h>
#include<conio.h>
int main()
{    int m,n,i,j,mat[10][10];
 clrscr();
   printf(“enter the value of m\n”);
scanf(“%d”,&m);
   printf(“enter the value of n\n”);
 scanf(“%d”,&n);
  printf(“enter the matrix elements \n”);
 for(i=0;i<m;i++)
{ for (j=0;j<n;j++)    
{        scanf(“%d”,&mat[i][j]); }
}
printf(” display in matrix format\n”);
 for(i=0;i<m;i++)
 { for(j=0;j<n;j++) 
{      printf(“%d\t”, mat[i][j]);      }
 printf(“\n”);
     }
getch();
return 0;
}
Output:
c program on how to display the elements in a matrix format