Star pattern 2

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
*
**
***
****
*****

Comments

  1. Photo main jitna hai stars.
    Output main utna kyun nehi hain

    ReplyDelete
    Replies
    1. Because it's an user input program and i input 5 so it's print less star...

      Delete

Post a Comment