C Programming language

adplus-dvertising
C Program example: Enter a number and print Star Triangle
Previous Home Next
Print Star Triangle

In this example we are print * in first line ,** into second line,*** into third line ,**** into fourth line and son on.

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

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

Previous Home Next