top of page

C program to print diamond pattern

  • Writer: Jino Shaji
    Jino Shaji
  • Dec 31, 2014
  • 1 min read

C program to print diamond pattern











Diamond pattern in c: This code print diamond pattern of stars. Diamond shape is as follows:

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

C programming code


#include 
 
int main()
{
  int n, c, k, space = 1;
 
  printf("Enter number of rows\n");
  scanf("%d", &n);
 
  space = n - 1;
 
  for (k = 1; k <= n; k++)
  {
    for (c = 1; c <= space; c++)
      printf(" ");
 
    space--;
 
    for (c = 1; c <= 2*k-1; c++)
      printf("*");
 
    printf("\n");
  }
 
  space = 1;
 
  for (k = 1; k <= n - 1; k++)
  {
    for (c = 1; c <= space; c++)
      printf(" ");
 
    space++;
 
    for (c = 1 ; c <= 2*(n-k)-1; c++)
      printf("*");
 
    printf("\n");
  }
 
  return 0;
}

Output of program:

Diamond c program

Recent Posts

See All
Pointers In C

C Pointers Pointers in C are easy and fun to learn. Some C programming tasks are performed more easily with pointers, and other tasks,...

 
 
 

Comments


bottom of page