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<=i;j++)
  {
   printf("*");
  }
  printf("\n");
 }
 getch();
}
OUTPUT:
Enter the no. Of row:5
*
**
***
****
*****
 
Photo main jitna hai stars.
ReplyDeleteOutput main utna kyun nehi hain
Because it's an user input program and i input 5 so it's print less star...
Delete