Showing posts with label Program to print stars Sequence2.. Show all posts
Showing posts with label Program to print stars Sequence2.. Show all posts

Program to print stars Sequence2.

Program to print stars Sequence2.
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k;
clrscr();
for(i=1;i<=5;i++)
{
for(j=5;j>=i;j--)
printf(“ ”);
for(k=1;k<=i;k++)
printf(“*”);
printf(“\n”);
}
getch();
}
Output:
*
**
*
**
***