All pattern programm in C Language

Pattern program


Pattern 1:

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=5;i>=1;i--)
{
for(j=1;j<=i;j++)
{
printf("*");
}
printf("\n");
}
getch();
}

Output:

* * * * *
* * * *
* * *
* *
*





Pattern 2:

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("*");
}
printf("\n");
}
getch();
}

Output:

*
* *
* * *
* * * *
* * * * *





Pattern 3:

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5






Pattern 4:

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=5;i>=1;i--)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:

1 2 3 4 5
1 2 3 4
1 2 3
1 2
1





Pattern 5:

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=5;i++)
{
for(j=5;j>=i;j--)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:

5 4 3 2 1
5 4 3 2
5 4 3
5 4
5





Pattern 6:

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=5;i>=1;i--)
{
for(j=5;j>=i;j--)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:
5
5 4
5 4 3
5 4 3 2
5 4 3 2 1





Print Pattern 7:

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n,k;
clrscr();
printf("Enter the value::");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(k=1;k<i;k++)
{
printf(" ");
}
for(j=i;j<=n;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:
Enter the value::5

1 2 3 4 5
  2 3 4 5
    3 4 5
      4 5
        5





8./* Print Pattern

            1
          1 2
        1 2 3
      1 2 3 4
    1 2 3 4 5

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n,k;
clrscr();
printf("Enter the value::\n");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(k=1;k<=n-i;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:

Enter the value::5

            1
          1 2
        1 2 3
      1 2 3 4
    1 2 3 4 5





9./* Print Pattern

5 4 3 2 1
  4 3 2 1
    3 2 1
      2 1
        1

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n,k;
clrscr();
printf("Enter the value::");
scanf("%d",&n);
for(i=n;i>=1;i--)
{
for(k=1;k<=n-i;k++)
{
printf(" ");
}
for(j=i;j>=1;j--)
{
printf(" %d",j);
}
printf("\n");
}
getch();
}

Output:

Enter the value::5

5 4 3 2 1
  4 3 2 1
    3 2 1
      2 1
        1






10./* Print pattern

1 2 3 4 5
  1 2 3 4
    1 2 3
      1 2
        1

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n,k;
clrscr();
printf("Enter the value::\n");
scanf("%d",&n);
for(i=5;i>=1;i--)
{
for(k=1;k<=n-i;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf(" %d",j);
}
printf("\n");
}
getch();
}

Output:

Enter the value::5

1 2 3 4 5
  1 2 3 4
    1 2 3
      1 2
        1







11./* Print Pattern

            1
          2 1
        3 2 1
      4 3 2 1
    5 4 3 2 1

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k;
clrscr();
for(i=1;i<=5;i++)
{
for(k=1;k<=5-i;k++)
{
printf(" ");
}
for(j=i;j>=1;j--)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:
            1
          2 1
        3 2 1
      4 3 2 1
    5 4 3 2 1





12./* Print pattern

5 4 3 2 1
4 3 2 1
3 2 1
2 1
1

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=5;i>=1;i--)
{
for(j=i;j>=1;j--)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:

5 4 3 2 1
4 3 2 1
3 2 1
2 1
1





13./* Print Pattern

            5
          4 5
        3 4 5
      2 3 4 5
    1 2 3 4 5

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k;
clrscr();
for(i=5;i>=1;i--)
{
for(k=1;k<i;k++)
{
printf(" ");
}
for(j=i;j<=5;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:
            5
          4 5
        3 4 5
      2 3 4 5
    1 2 3 4 5






14./* Print Pattern

1 1 1 1 1
  2 2 2 2
    3 3 3
      4 4
        5

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k;
clrscr();
for(i=1;i<=5;i++)
{
for(k=1;k<i;k++)
{
printf(" ");
}
for(j=i;j<=5;j++)
{
printf("%d",i);
}
printf("\n");
}
getch();
}

Output:

1 1 1 1 1
  2 2 2 2
    3 3 3
      4 4
        5






15./* Print Pattern

            5
          4 4
        3 3 3
      2 2 2 2
    1 1 1 1 1

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k;
clrscr();
for(i=5;i>=1;i--)
{
for(k=1;k<i;k++)
{
printf(" ");
}
for(j=i;j<=5;j++)
{
printf("%d",i);
}
printf("\n");
}
getch();
}

Output:
            5
          4 4
        3 3 3
      2 2 2 2
    1 1 1 1 1





16./* Print Pattern

            1
           2 2
          3 3 3
         4 4 4 4
        5 5 5 5 5

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k;
clrscr();
for(i=1;i<=5;i++)
{
for(k=1;k<=n-i;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf(" %d",i);
}
printf("\n");
}
getch();
}

Output:

            1
           2 2
          3 3 3
         4 4 4 4
        5 5 5 5 5






17./* Print Pattern

1
2 2
3 3 3
4 4 4 4
5 5 5 5 5

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}

Output:
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5






18./* Print Pattern

5 5 5 5 5
4 4 4 4
  3 3 3
   2 2
    1

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n,k;
clrscr();
printf("Enter the value:\n");
scanf("%d",&n);
for(i=n;i>=1;i--)
{

for(k=1;k<=n-i;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf(" %d",i);
}
printf("\n");
}
getch();
}

Output:

Enter the value::5
5 5 5 5 5
4 4 4 4
  3 3 3
   2 2
    1






19.

/*

            *
           * *
          * * *
         * * * *
        * * * * *

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n,k;
clrscr();
printf("Enter the no:\n");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(k=1;k<=n-i;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf("* ");
}
printf("\n");
}
getch();
}

Output:

Enter the no:5

            *
           * *
          * * *
         * * * *
        * * * * *







20./* Print Pattern

* * * * *
* * * *
  * * *
   * *
    *

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n,k;
clrscr();
printf("Enter the no:\n");
scanf("%d",&n);
for(i=n;i>=1.;i--)
{
for(k=1;k<=n-i;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf("* ");
}
printf("\n");
}
getch();
}

Output:

Enter the value::5
* * * * *
* * * *
  * * *
   * *
    *






21./*

1
1 4
1 4 9
1 4 9 16
1 4 9 16 25

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,j;
clrscr();
printf("Enter any value:");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j*j);
{
printf("\n");
}
getch();
}

Output:

Enter the value::5
1
1 4
1 4 9
1 4 9 16
1 4 9 16 25






22./* Print Pattern

1
0 1
1 1 1
0 1 0 1
1 1 1 1 1

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=5;i++)
{
    for(j=1;j<=i;j++)
    {
if(i%2==0&&j%2!=0)
{
     printf("0");
}
else
{
      printf("1");
}

    }
printf("\n");
}
getch();
}

Output:
1
0 1
1 1 1
0 1 0 1
1 1 1 1 1





23./*  Print Pattern

a
      a b
    a b c
  a b c d
a b c d e

*/

#include<stdio.h>
#include<conio.h>
void main()
{
char ch='a'-1;
int i,j,k;
clrscr();
for(i=1;i<=5;i++)
{
for(k=1;k<=5-i;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf("%c",ch+j);
}
printf("\n");
}
getch();
}

Output:
       a
      a b
    a b c
  a b c d
a b c d e






24./* Print Pattern

         E
       D E
     C D E
   B C D E
A B C D E

*/

#include<stdio.h>
#include<conio.h>
void main()
{
char ch='A'-1;
int i,j,k;
clrscr();
for(i=5;i>=1;i--)
{
for(k=1;k<i;k++)
{
printf(" ");
}
for(j=i;j<=5;j++)
{
printf("%c",ch+j);
}
printf("\n");
}
getch();
}

Output:
        E
       D E
      C D E
   B C D E
A B C D E






25./* Print Pattern

E D C B A
D C B A
C B A
B A
A

*/

#include<stdio.h>
#include<conio.h>
void main()
{
char ch='A'-1;
int i,j;
clrscr();
for(i=5;i>=1;i--)
{
for(j=i;j>=1;j--)
{
printf("%c",ch+j);
}
printf("\n");
}
getch();
}

Output:

E D C B A
D C B A
C B A
B A
A





26./* Print Pattern

        E
      E D
    E D C
  E D C B
E D C B A
*/

#include<stdio.h>
#include<conio.h>
void main()
{
char ch='A'-1;
int i,j,k,c;
clrscr();
for(i=5;i>=1;i--)
{
for(j=1;j<i;j++)
{
printf(" ");
}
for(k=5;k>=i;k--)
{
printf("%5c",ch+k);
}
printf("\n");
}
for(c=65;c<=122;c++)
{
printf("%c",c);
printf(" ");
}
getch();
}

Output:
       E
      E D
    E D C
  E D C B
E D C B A
    






27./*  Print Pattern

         0
      1 0 1
   2 1 0 1 2
 3 2 1 0 1 2 3

4 3 2 1 0 1 2 3 4

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,j,k;
clrscr();
printf("Enter any value of N:\n");
scanf("%d",&n);
for(i=0;i<=n;i++)
{
for(k=n;k>=i;k--)
{
printf("  ");
}
for(j=i;j>=0;j--)
{
printf(" %d",j);
}
for(j=1;j<=i;j++)
{
printf(" %d",j);
}
printf("\n");
}
getch();
}

Output:

Enter the value::5
         0
      1 0 1
    2 1 0 1 2
  3 2 1 0 1 2 3
4 3 2 1 0 1 2 3 4






28./* Print Pattern

    *
   * *
  * * *
* * * *
* * * * *
* * * *
  * * *
   * *
    *

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,j,k;
clrscr();
printf("Enter any value of N:");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(k=1;k<=n-i;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf(" *");
}
printf("\n");
}
for(i=n-1;i>=1;i--)
{
for(k=1;k<=n-i;k++)
{
printf(" ");
}
for(j=i;j>=1;j--)
{
printf(" *");
}
printf("\n");
}
getch();
}

Output:

Enter the value::5
    *
   * *
  * * *
* * * *
* * * * *
* * * *
  * * *
   * *
    *





29./* Print Pattern

* * * * *
*.         *
*.         *
*.         *
* * * * *

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,k,j;
clrscr();
printf("Enter any value:");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=1;j<=n;j++)
{
if(i==1||j==1||i==n||j==n)
{
printf("*");
}
else
{
printf(" ");
}
}
printf("\n");
}
getch();
}

Output:

Enter the value::5
* * * * *
*          *
*          *
*          *
* * * * *






30./* Print pattern

*               *
* *           * *
* * *       * * *
* * * *   * * * *
* * * * * * * * *

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,k,j;
clrscr();
printf("Enter any value:");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
printf("* ");
}
for(k=1;k<2*(n-i);k++)
{
printf("  ");
}
for(j=1;j<=i;j++)
{
if(i==n&&j==n);
else
{
printf("* ");
}
}
printf("\n");
}
getch();
}

Output:

Enter the value::5
*               *
* *           * *
* * *       * * *
* * * *   * * * *
* * * * * * * * *






31./*--

**********
****  ****
***    ***
**      **
*        *
**      **
***    ***
****  ****
**********

--*/
#include<stdio.h>
void main()
{
     int i, j, k;
     for(i=1;i<=5;i++)
     {
         for(j=1;j<=6-i;j++)
         {
             printf("*");
         }
         for(k=1;k<i;k++)
         {
             printf("  ");
         }
         for(j=1;j<=6-i;j++)
         {
             printf("*");
         }
         printf("\n");
     }
     for(i=2;i<=5;i++)
     {
         for(j=1;j<=i;j++)
         {
             printf("*");
         }
         for(k=1;k<=5-i;k++)
         {
             printf("  ");
         }
         for(j=1;j<=i;j++)
         {
             printf("*");
         }
         printf("\n");
     }
}

Output:

**********
****  ****
***    ***
**      **
*        *
**      **
***    ***
****  ****
**********






32. pattern

/*

*
* *
*  *
*   *
*    *
*      *
*        *
*         *
*           *
*             *
*                *
************

--*/
#include<stdio.h>
void  main()
{
  int num,r,j,s;
  printf("Enter no of rows: ");
  scanf("%d", &num);
  printf("\n*\n");
  for(r=1; r<=num; r++)
  {
   printf("*");
   for(s=1; s<r; s++)
     printf(" ");
   printf("*\n");
  }
  for(j=1; j<=num+2; j++)
    printf("*");
}

Output:

*
* *
*   *
*    *
*      *
*       *
*         *
*           *
*             *
*              *
*                *
************






33./* Print Pattern

A
1 2
B C D
3 4 5 6 
E F G H I

*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,j,k=1;
char ch='A';
clrscr();
printf("\n\nEnter How Many Rows Own::>\n");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
if((i%2)==0)
{
for(j=1;j<=i;j++)
{
printf("%d",k);
k++;
}
}
else
{
for(j=1;j<=i;j++)
{
printf("%c",ch);
ch++;
}
}
printf("\n");
}
getch();
}

Output:

Enter the value::5
A
1 2
B C D
3 4 5 6 
E F G H I

    


Reactions

Post a Comment

0 Comments