w3ajay

tally tutorial point, ms word 2013, ms excel 2013, ms powerpoint 2010,ccc question with answer in hindi 2021, Tally Prime in hindi , tally prime,Python,in python,programming in python,python

Friday, December 20, 2019

C program to print diamond pattern

C program to print diamond pattern

         






#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1; i<=5;i++)
{
    for(j=5; j>=i;j--)
      {
        printf(" ");
      }
         for(j=1;j<=i;j++)
            {
             printf("* ");
             }
    printf("\n");
}
for(i=1;i<=5;i++)
{
      for(j=1;j<=5;j++)
         {
          printf(" ");
          }
             for(j=5;j>=i; j--)
               {
                 printf("* ");
               }
   printf("\n");
}
getch();
}

No comments:

Post a Comment

for more information please share like comment and subscribe