Contact Learn C
Copy

Program 75:Alpha pyramid 5

Program 75:
#include<stdio.h>
main()
{
int i,j,left,right,k,rightcount,count,rows,alpha;
printf("Enter number of rows\n");
scanf("%d",&rows);
count=rows-1;
left=65;
right=64;

for(i=1;i<=rows;i++)
{
    for(k=1;k<=count;k++)
    {
        printf(" ");
    }
    for(j=65;j<=left;j++)
    {
        printf("%c",j);
    }
    left++;
       if(i!=1)
       {
               for(j=65;j<=right;j++)
             {
            printf("%c",j);
                 }
             
       }
        right++;
       printf("\n");
       count--;    
}
}

Explanation:

//Coming Soon...

Output:

Alpha pyramid 5
 
Donate

Download App and Learn when ever you want

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