Hi,
I would like to print star pattern in the following way -
****
***
**
*
main()
int i;
clrscr();
for(i=4;i<=4;i++)
{
printf("*");
getch();
}
It prints starts like ****
I don't know how to complete the program. Can anyone please do the complete program for this so that stars are printed in the manner as given above.
Thanks