*
**
***
****
#include <stdio.h>
#include <conio.h>
void main()
{
int i,j,n;
clrscr();
printf("\n Enter the no of rows: ");
scanf("%d",&n);
for(i=0;i<=n;i++)
{
for(j=1;j<=i;j++)
{
printf("*");
}
printf("\n");
}
}
**
***
****
#include <stdio.h>
#include <conio.h>
void main()
{
int i,j,n;
clrscr();
printf("\n Enter the no of rows: ");
scanf("%d",&n);
for(i=0;i<=n;i++)
{
for(j=1;j<=i;j++)
{
printf("*");
}
printf("\n");
}
}
No comments:
Post a Comment