C Programming language

adplus-dvertising
C Program example: Print star triangle in reverse order
Previous Home Next

In this example we are going to make a reverse star triangle using c. In this example we are going print * followed by n-1 space in first line,** followed by n-2 space ,*** followed by n-3 space and so on.

#include<stdio.h>
#include<conio.h>            
void main()                  
{                           
	int i,j,k,n;                 
	clrscr();                     
	printf("Enter a number\t");
	scanf("%d",&n);
	for(i=1;i<=n;i++)
	{
		for(j=1;j<=n-i;j++)
			printf(" ");
		for(k=1;k<=i;k++)
			printf("*");
		printf("\n");
	}
	getch();
}
Output:Enter a number 5
            *      
          * *      
        * * *      
      * * * *      
    * * * * *      
Previous Home Next