// Pattern Program2
#include<stdio.h>
#include<conio.h>
int main()
{int i,j,m,n;
clrscr();
printf(“enter the value of m\n”);
scanf(“%d”,&m);
printf(“enter the value of n\n”);
scanf(“%d”,&n);for(i=0;i<m;i++)
{ for(j=0;j<n;j++)
{ printf(“1\t”); }
printf(“\n”);
}
}
getch();
return 0;
}