Tuesday 3 September 2013

C Programming for beginners, Patterns using nested for loop, Pattern 7

Pattern 7
Write a prog. to print following pattern

       *
     * *
   * * *
 * * * *
* * * * *

#include<conio.h>
#include<stdio.h>
void main()
{
int n=0,i,j;
clrscr();
printf("Enter N:");
scanf("%d",&n);
printf("\n\n");
for(i=1;i<=n;i++)
{

for(j=1;j<=n-i;j++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf("* ");
}
printf("\n");
}
getch();
}


O/P:


No comments:

Post a Comment

Contact Form

Name

Email *

Message *