/*
Summary: Print rectangle pattern of stars.
*/
#include<stdio.h>
int main()
{
int row, col, n, m;
printf("Enter the number of rows: ");
scanf("%d", &n);
printf("Enter the number of columns: ");
scanf("%d", &m);
for(row=1; row<=n; row++)
{
for(col=1; col<=m; col++)
printf("* ");
printf("\n");
}
return 0;
}
0 comments