Wednesday, 29 July 2015

Write a C program to print the following pattern:

       

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

void main()
{
int i,j,k=1,n;
clrscr();
printf("\n Enter the no of rows: ");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",k%2);
k++;
}
printf("\n");
}
getch();
}

No comments:

Post a Comment