Posts

another Bit printing Pattern Using C

Image
#include<stdio.h> int main() { int h,i,j; printf("Enter the height"); scanf("%d",&h); for(i=1;i<=h;i++) {  for(j=1;j<=i;j++)   {     printf("%d ",j%2);   }  printf("\n"); } }

print diamond with space Pattern using C

Image
#include<stdio.h> int main() { int h,i,j; printf("Enter the height"); scanf("%d",&h); for(i=1;i<=h;i++) {  for(j=1;j<20-i;j++)   printf("  ");  for(j=1;j<=i;j++)   {   if(j==1 || j==i)   printf("%c ",64+j);   else   printf("  ");   }  for(j=j-2;j>=1;j--)   {   if(j==1 || j==j-2)    printf("%c ",64+j);   else    printf("  ");   }  printf("\n"); } for(i=h-1;i>=1;i--) {  for(j=1;j<20-i;j++)   printf("  ");  for(j=1;j<=i;j++)   {   if(j==1 || j==i)   printf("%c ",64+j);   else   printf("  ");   }  for(j=j-2;j>=1;j--)   {   if(j==1 || j==j-2)   printf("%c ",64+j);   else   printf("  ");   }  printf("\n"); } }

print diamond of alphabets Pattern Using C

Image
//pattern #include<stdio.h> int main() { int h,i,j; printf("Enter the height"); scanf("%d",&h); for(i=1;i<=h;i++) {  for(j=1;j<20-i;j++)   printf("  ");  for(j=1;j<=i;j++)   printf("%c ",64+j);  for(j=j-2;j>=1;j--)   printf("%c ",64+j);  printf("\n"); } for(i=h-1;i>=1;i--) {  for(j=1;j<20-i;j++)   printf("  ");  for(j=1;j<=i;j++)   printf("%c ",64+j);  for(j=j-2;j>=1;j--)   printf("%c ",64+j);  printf("\n"); } }

Triangle of alphabets Pattern using C

Image
//Pattern #include<stdio.h> int main() { int h,i,j; printf("Enter the height"); scanf("%d",&h); for(i=1;i<=h;i++) {  for(j=1;j<20-i;j++)   printf("  ");  for(j=1;j<=i;j++)   printf("%c ",64+j);//123//ABC  for(j=j-2;j>=1;j--)   printf("%c ",64+j);//21//BA      ABCBA  printf("\n"); } }

Pyramid of increasing then decreasing number Pattern using C

Image
//Pattern #include<stdio.h> int main() { int h,i,j; printf("Enter the height"); scanf("%d",&h); for(i=1;i<=h;i++) {  for(j=1;j<11-i;j++)   printf("  ");  for(j=1;j<=i;j++)   printf("%2d",j);  for(j=j-2;j>=1;j--)   printf("%2d",j);  printf("\n"); } }

star in diamond shape Pattern using C

Image
//Pattern #include<stdio.h> int main() { int h,i,j; printf("Enter the height"); scanf("%d",&h); for(i=1;i<=h;i++) {  for(j=1;j<40-i;j++)   printf(" ");  for(j=1;j<=i;j++)   printf("* ");  printf("\n"); } for(i=h-1;i>=1;i--)//4, 3 {  for(j=1;j<40-i;j++)//32   printf(" ");  for(j=1;j<=i;j++)//j=1..4 -----   1..3 ------  1..2 ---  1..1   printf("* ");  printf("\n"); } }