Contact Learn C
Copy

program 157:Left Alpha Pyramid 3

Program 157:

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

//Coming Soon...

Output:



Left Alpha Pyramid 4

Donate

Download App and Learn when ever you want

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