Click on read more
#include<stdio.h>
#include<conio.h>
void main()
{
 int i,j,n;
 clrscr();
 printf ("Enter the no. Of row:");
 scanf("%d",&n);
 for(i=1;i<=n;i++)
 {
  for(j=1;j<=n;j++)
  {
   printf("*");
  }
  printf("\n");
 }
 getch();
}
OUTPUT:
Enter the no. Of row:5
*****
*****
*****
*****
*****
 
Comments
Post a Comment