Q : Write a function that returns 1 if the two matrices passed to it as argument are equal and 0
otherwise.
Solution :
#include<stdio.h>
#include<conio.h>
#define ROW 2
#define COL 2
int
compare(int a1[ROW][COL],int a2[ROW][COL]);
void main()
{
int
ar1[ROW][COL],ar2[ROW][COL],r,c;
clrscr();
