Skip to content
Home » C Program to Print Mirrored Half Diamond Star Pattern

C Program to Print Mirrored Half Diamond Star Pattern

Learn about C Program to Print Mirrored Half Diamond Star Pattern in the below code example. Also refer the comments in the code snippet to get a detailed view about what’s actually happening.

C Program to Print Mirrored Half Diamond Star Pattern

To print the half diamond star pattern in C use the below code.

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

Program:

#include<stdio.h>
#include<stdlib.h>
int main()
{
  int n;

  printf("Enter number of rows: ");
  scanf("%d",&n);

  for(int i=1; i<= 2*n; i++)
  {
    for(int j=1; j<=n; j++)
    if(j<= abs(n-i)) printf(" ");
    else printf("*");

    printf("\n"); //next line
  }

  return 0;
}

Output:

Enter number of rows: 5
    *
   **
  ***
 ****
*****
 ****
  ***
   **
    *

Hope above code works for you and Refer the below Related Codes to gain more insights. Happy coding and come back again.

Similar Codes :
C Program to Print Half Diamond Star Pattern
C program to print hollow diamond of numbers