Learn about C program to print half diamond of stars in the below code example. Also refer the comments in the code snippet to get a detailed view about what’s actually happening.
Contents
C program to print half diamond of stars
To print the half diamond pattern in C like below follow the below C code.
* ** *** **** ***** **** *** ** *
Program:
#include<stdio.h>
#include<stdlib.h>
int main()
{
int n, star;
printf("Enter number of rows: ");
scanf("%d",&n);
for(int i=1; i< 2*n; i++)
{
if(i < n) star=i;
else star = abs(2*n-i);
for(int j=1; j<=star; j++)
printf("*");
printf("\n");
}
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 of stars
C program to print inverted full pyramid star pattern