Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Print the following Pattern in C Language



In this C-program we will Print the following Pattern made of A and B. The no. of rows will be taken from the user.color>


A
AB
ABA
ABAB
ABABA

input:

The number of rows.

output:

The Pattern will be printed on the screen in the given range.

CODE---->


#include
int main()
{
int i,j,n;
printf("\nPlease,Enter the no. of rows: ");
scanf("%d",&n);
for(i=1;in;i++)
{
for(j=1;ji;j++)
{
if(j%2!=0)
printf("A");
else
printf("B");
}
printf("\n");

}
return 0;
}


Download the C-Program file of this Program.

Don't just read, run on your pc !!!color>

RESULT :color>




Please,Enter the no. of rows: 10
A
AB
ABA
ABAB
ABABA
ABABAB
ABABABA
ABABABAB
ABABABABA
ABABABABAB

--------------------------------
Process exited after 5.282 seconds with return value 0
Press any key to continue . . .


Images for better understanding : color>



This post first appeared on ProgramJoy.blogspot.com, please read the originial post: here

Share the post

Print the following Pattern in C Language

×

Subscribe to Programjoy.blogspot.com

Get updates delivered right to your inbox!

Thank you for your subscription

×