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

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

By September 18, 2012 August 2nd, 2019 2 Comments
* * * * *
  * * * *
    * * *
      * *
        *
#include<stdio.h> 
#include<conio.h>  
main()
{
	int i,j,k,n;
	clrscr();
	printf("Enter number : ");
	scanf("%d",&n);
	for(i=1;i<=n;i++)
	{
		for(k=1;k<i;k++)
			{
			 printf(" ");
			}
		for(j=i;j<=n;j++)
			{
			 printf("*");
			}
		printf("\n");
	}
	getch();
}

2 Comments

Leave a Reply

DEMO01