Learn C ProgrammingLearn ProgrammingLoop Control StructuresPrograms On For Loop-Pattern ProgrammingResources

038. Write a program to print following outputs in C language

By September 18, 2012 February 5th, 2018 One Comment
        *
      * *
    * * *
  * * * *
* * * * *
#include<stdio.h>
#include<conio.h>  
main()
{
	int i,j,k,n;
	clrscr();
	printf("Enter number : ");
	scanf("%d",&n);
	for(i=n;i>=1;i--)
	{
		for(k=1;k<=(n-i);k++)
			{
			 printf(" ");
			}
		for(j=1;j<=i;j++)
			{
			 printf("*");
			}
		printf("\n");
	}
	getch();
}


One Comment

Leave a Reply

DEMO01