Contact Learn C
Copy

Program 43:Alphabetical Pattern 2

Program 43:
#include<stdio.h>
main()
{
 int i,j,num,k;
 printf("Enter number of rows\n");
 scanf("%d",&num);
 for(i=1;i<=num;i++)
 {
  k=65;
  for(j=1;j<=i;j++)
  {
   printf("%c",k);
   k++;
  }
  
 printf("\n");
 }
}
Explanation:

//Pending

 Output:

Alphabetical Pattern 2
Donate

Download App and Learn when ever you want

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