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