Program 316: Display Alphabetical Pattern As Given--Alpha Pattern 6
//Coming Soon...
Output:
// A
// CB
// FED
// JIHG
//ONMLK
//For 5 rows
#include<stdio.h>
main()
{
int i,j,num,k,count,temp=65,alpha,temp1=1;
printf("Enter number of rows\n");
scanf("%d",&num);
count=num-1;
for(i=1;i<=num;i++)
{
for(k=1;k<=count;k++)
{
printf(" ");
}
alpha=temp;
for(j=1;j<=i;j++)
{
printf("%c",alpha);
alpha--;
}
temp=temp +(++temp1);
printf("\n");
count--;
}
}
Explanation:Output:


