Posts

Showing posts from 2020

Bit printing Pattern using C

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

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"); } }

alphabets pyramid 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("%c ",64+j);  printf("\n"); } }

Print Pattern using C

Image
//Pattern Print #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++)//39 , 38   ,37  , 36    printf(" ");  for(j=1;j<=i;j++)   printf("%c ",64+i);  printf("\n"); } }

Pascal Triangle using 2D array

Image
//Pascal Triangle .... #include<stdio.h> int main() { int ar[10][10],m,n,i,j; printf("\nenter the height of the pascal triangle : "); scanf("%d",&m); for(i=0;i<m;i++) for(j=0;j<m;j++) { if(j==0) ar[i][j]=1; else ar[i][j]=0; } for(i=1;i<m;i++) { for(j=1;j<=i;j++) { ar[i][j]=ar[i-1][j-1]+ar[i-1][j]; } } printf("\nPscal Triangle will look like : \n"); for(i=0;i<m;i++) { for(j=0;j<20-i;j++) printf(" "); for(j=0;j<=i;j++) printf("%2d",ar[i][j]); printf("\n"); } } O/P: