Wednesday, October 30, 2019

Print the following formats.
****
***
**
*
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=4;i>1;i--)
{
for(j=;j<=i;j++)
printf("*");
printf("\n");
}
getch();
}
OUTPUT
****
***
**
*

6 comments:

2004 1.       A.   True or false:- 1.       The part of the computer that executes program instruction known as memory.- False 2.  ...