R4R
Right Place For Right Person TM
 
R4R C C ExamplesPrint Reverse Star Using C
previous

Home

Next

Learn C with example

Print Reverse Star Using C

In this example we are going to learn how we can make a reverse star using C.

In this example we are going to print ***...n in first line ,***..n-1 followed by one space,***..n-2 followed by 2 space and so on..

 

 

Source Code of Example

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

Output Of Example

Enter a number 5
* * * * *
 * * * * 
  * * *
   * *
    * 

previous

Home

Next

New Updates

R4R
R4R
R4R
R4R
R4R
R4R
R4R
R4R