Friday, July 22, 2011

Program to print stars in Traingular pattern {Type 5}


*  *  *  *  *
*  *  *  *
*  *  *
*  *
*
 -----------------------------------------------------------------------------
/*Serial No.27     [swami147.cpp]*/ 

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n;
clrscr();
printf("Enter the no. of lines of traingle:");
scanf("%d",&n);
printf("\n");
for(i=n;i>=1;i--)
{
for(j=1;j<=i;j++)
{printf("*");
}
printf("\n");}
getch();
}

No comments:

Post a Comment

If you have any doubt, feel free to ask...