Print A Design-II

Print the following design:

A
AB
ABC
ABCD



#include<stdio.h>
#include<conio.h>
main()
{
  int i,j;
  char ch;
  clrscr();
  for(i=1;i<5;i++)
  {
   for(j=1,ch='A';j<=i;j++,ch++)
    printf("%c",ch);
   printf("\n");
  }
  return 0;
}