Contact Learn C
Copy

Program 159:Right Symbol Pyramid

Program 159:

#include<stdio.h>
#include<stdlib.h>
main()
{
    int i,j,k,rows,count;
    printf("Enter number of rows:\n");
    scanf("%d",&rows);
    count=rows-1;
    for(i=1;i<=rows;i++)
    {
     for(k=1;k<=count;k++)
        {
      printf(" ");
     }
        for(j=1;j<=i;j++)
        {
            printf("*");
        }
        count--;
       
        printf("\n");
    }  
    
    count=1;
      for(i=rows-1;i>=1;i--)
    {
     for(k=1;k<=count;k++)
        {
      printf(" ");
     }
        for(j=1;j<=i;j++)
        {
            printf("*");
        }
        count++;
       
        printf("\n");
    }  

}
Explanation:

//Coming Soon...

Output:

Right Symbol Pyramid




 
Donate

Download App and Learn when ever you want

Get it on PlayStore
Get it on Amazon App Store
Get it on Aptoide