Print Pattern using C

//Pattern Print


#include<stdio.h>

int main()
{
int h,i,j;

printf("Enter the height");
scanf("%d",&h);


for(i=1;i<=h;i++)
{
 for(j=1;j<40-i;j++)//39 , 38   ,37  , 36 
  printf(" ");
 for(j=1;j<=i;j++)
  printf("%c ",64+i);
 printf("\n");
}
}

Comments

Popular posts from this blog

JAVA program to add two distance