Star Pattern in C

Advertisements

Prev Tutorial Next Tutorial

Print Star Pattern in c

In c language you can print any star patter, here you need nested loop first loop for print star and inner loop is used for line break.

print star pattern in c

Print star triangle in C

#include<stdio.h>
#include<conio.h>

void main()
{
int i,j,k;
clrscr();
for(i=1; i<=5; i++)
{
for(j=4; j>=i; j--)
{
printf(" ");
}
for(k=1; k<=(2*i-1); k++)
{
printf("*");
}
printf("\n");
}
getch();
}

Output

         *
       * * *
     * * * * *
   * * * * * * *
 * * * * * * * * *

Print Star Pattern in C

#include<stdio.h>
#include<conio.h>

void main()
{
 int i, j, k;
for(i=5;i>=1;i--)
{
for(j=5;j>i;j--)
{
printf(" ");
}
for(k=1;k<(i*2);k++)
{
printf("*");
}
printf("\n");
}
getch();
}

Output

 * * * * * * * * *
   * * * * * * *
     * * * * *
	   * * * 
	     *

Print * Triangle in C

#include<stdio.h>
#include<conio.h>

void main()
{
int i,j;
clrscr();
for(i=1; i<=6; i++)
{
for(j=1; j<i; j++)
{
printf("*");
}
printf("\n");
}
getch();
}

Output

*
* *
* * *
* * * *
 * * * * *

print star triangle

#include<stdio.h>
#include<conio.h>

void main()
{
 int i, j;
 for(i=5;i>=1;i--)
{
for(j=1;j<=i;j++)
{
printf("*");
}
printf("\n");
}
getch();
}

Output

* * * * *
* * * *
* * *
* *
*

print * pattern

#include<stdio.h>
#include<conio.h>

void main()
{
int i, j, k;
for(i=5;i>=1;i--)
{
for(j=1;j<i;j++)
{
printf(" ");
}
for(k=5;k>=i;k--)
{
printf("*");
}
printf("\n");
}
getch();
}

Output

        *
      * *
    * * *
  * * * *
* * * * *

print star triangle

#include<stdio.h>
#include<conio.h>

void main()
{
int i, j, k;
for(i=5;i>=1;i--)
{
for(j=5;j>i;j--)
{
printf(" ");
}
for(k=1;k<=i;k++)
{
printf("*");
}
printf("\n");
}
getch();
}

Output

* * * * *
  * * * * 
    * * * 
      * * 
        *

print dimond of star

#include<stdio.h>
#include<conio.h>

void main()
{
 int i, j, k;
for(i=1;i<=5;i++)
{
for(j=i;j<5;j++)
{
printf(" ");
}
for(k=1;k<(i*2);k++)
{
printf("*");
}
printf("\n");
}
for(i=4;i>=1;i--)
{
for(j=5;j>i;j--)
{
printf(" ");
}
for(k=1;k<(i*2);k++)
{
printf("*");
}
printf("\n");
}
getch();
}

Output

         *
       * * * 
     * * * * *
   * * * * * * *
 * * * * * * * * *
   * * * * * * *
     * * * * *
       * * *
         *

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements