Contact Learn C
Copy

Program 163:Right Alpha Pyramid 2

Program 163:

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

//Coming Soon...

Output:

Right Alpha Pyramid 2
 
Donate

Download App and Learn when ever you want

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