print the following pattern in c
*****
****
***
**
*
#include<stdio.h>
#include<conio.h>
main()
{
int i,j;
for(i=0;i<5;i++)
{
for(j=0;j<5;j++)
{
if(j<=i-1)
printf(" ");
else
printf("*");
}
printf("\n");
}
getch();
}
*****
****
***
**
*
#include<stdio.h>
#include<conio.h>
main()
{
int i,j;
for(i=0;i<5;i++)
{
for(j=0;j<5;j++)
{
if(j<=i-1)
printf(" ");
else
printf("*");
}
printf("\n");
}
getch();
}
No comments:
Post a Comment