Print Alphabet Pattern in C

Advertisements

Prev Tutorial Next Tutorial

Print Alphabet Pattern ABCDEFGHIJ Program in C

In c language you can print any Alphabet Pattern. Here i will show you how to print Alphabet Pattern in c language with explanation.

Print Alphabet Pattern in C

#include<stdio.h>
#include<conio.h>

void main()
{
 int i, j;
    for(i=1;i<=5;i++)
    {
      for(j=1;j<=i;j++)
      {
       printf("%c",'A' + j-1);
      }
      printf("\n");
    }
getch();
}

Output

A
AB
ABC
ABCD
ABCDE

Print Alphabet ABCDEFGHIJ Pattern in C

#include<stdio.h>
#include<conio.h>

void main()
{
int i, j;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%c",'A'-1 + i);
}
printf("\n");
}
getch();
}

Output

A
BB
CCC
DDDD
EEEEE

C Program to Print Alphabet Pattern

#include<stdio.h>
#include<conio.h>

void main()
{
int i, j;
for(i=1;i<=5;i++)
{
for(j=5;j>=i;j--)
{
printf("%c",'A'-1 + i);
}
printf("\n");
}
getch();
}

Output

  AAAAA
  BBBB
  CCC
  DD
  E

Program to Print Alphabet Pattern in C

#include<stdio.h>
#include<conio.h>

void main()
{
char s[]="india";
int i,j;
clrscr();
for(i=0;s[i];i++)
{
for(j=0;j<=i;j++)
printf("%c",s[j]);
printf("\n");
}
getch();
}

Output

  I
  IN
  IND
  INDI
  INDIA

Print Alphabet Pattern Program in C

#include<stdio.h>
#include<conio.h>

void main()
{
int i, j;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
if(j%2==0) printf("A");
else printf("*");
}
printf("\n");
}
getch();
}

Output

*
*A*
*A*A*
*A*A*A*

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements