Ad Code

Write a program to print the pattern with alphabets.

 Write a program to print the pattern with alphabets.



#include<stdio.h>
#include<conio.h>
void main()
{
int I,j,c=65;
clrscr();
for(i=65;i<=68;i++)
{
for(j=65;j<=I;j++)
{
printf(“%d”,c);
c++;
}
printf(“\n”);
}
getch();
}

Post a Comment

0 Comments

Ad Code