Program 374: Miscellaneous Numeric Pattern 5
//Coming Soon
Output:
#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=1;
right=2;
for(i=1;i<=rows;i++)
{
for(k=1;k<=count;k++)
{
printf(" ");
}
for(j=left;j>=1;j--)
{
printf("%d",j);
}
left++;
if(i!=1)
{
for(j=2;j<right;j++)
{
printf("%d",j);
}
}
right++;
printf("\n");
count--;
}
}
Explanation://Coming Soon
Output:


