SlideShare a Scribd company logo
1. Program to print pyramid in C : Pattern 4 :

Output :

*****
 ****
  ***
   **
    *_

Program :


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



   2. Program to print pyramid in C : Pattern 5 :

Output :



*****
****
***
**
*_

Program :
#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();
}



   3. Program to print pyramid in C : Pattern 6 :

Output :

   *
  **
 ***
 ****
* * * * *_

Program :

#include <stdio.h>
#include <conio.h>
void main()
{
         int i,j,k,t=0;
         clrscr();
         for(i=1; i<=5; i++)
         {
                    for(k=t; k<5; k++)
                    {
                              printf(" ");
                    }
                    for(j=0; j< i; j++)
                    {
                              printf(" * ");
                              t = t + 1;
                    }
                    printf("n");
         }
         getch();
}
4. Program to print pyramid in C : Pattern 7 :

Output :

    *
   **
  ***
 ****
*****
 ****
  ***
   **
    *_

Program :

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


    5. Program to print pyramid in C : Pattern 8 :

Output :

Enter number of rows: 5

1
23
456
7 8 9 10
11 12 13 14 15_

Program :

#include <stdio.h>
#include <conio.h>
void main()
{
         int rw, c, no=1 ,len;
         clrscr();
         printf("Enter number of rows: ");
         scanf("%d," &len);
         for(rw=1; rw<=len; rw++)
         {
                   printf("n");
                   for(c=1; c<=rw; c++)
                   {
                             printf(" %2d ", no);
                             no++;
                   }
         }
         getch();
}
6. Program to print pyramid in C : Pattern 9 :

Output :

Enter number of rows: 5

       0
      101
    21012
   3210123
 432101234
5 4 3 2 1 0 1 2 3 4 5_

Program :

#include <stdio.h>
#include <conio.h>
void main()
{
         int no,i,y,x=35;
         clrscr();
         printf("Enter number of rows: ");
         scanf("%d," &no);
         for(y=0;y<=no;y++)
         {
                   goto(x,y+1);
                   for(i=0-y; i<=y; i++)
                   {
                            printf(" %3d ", abs(i));
                            x=x-3;
                   }
         }
         getch();
}



   7. Program to print pyramid in C : Pattern 10 :

Output :

   1
  22
 333
 4444
5 5 5 5 5_

Program :

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



    8. Program to print pyramid in C : Pattern 11 :

Output :

   1
  12
 123
 1234
1 2 3 4 5_

Program :

#include <stdio.h>
#include <conio.h>
void main()
{
         int rw,c,no,spc;
         clrscr();
         printf("Enter number of rows : ");
         scanf("%d", &no);
         for(rw=1; rw<=no; rw++)
         {
                   for(spc=no; spc>=rw; spc--)
                   {
                             printf(" ");
                   }
                   for(c=1; c<=rw; c++)
                   {
                             printf("%2d",c);
                   }
                   printf("n");
}
          getch();
}



    9. Program to print pyramid in C : Pattern 12 :

Output :

      1
    123
   12345
 1234567
1 2 3 4 5 6 7 8 9_

Program :

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



    10.        Program to print pyramid in C : Pattern 13 :

Output :

ABCDEFGGFEDCBA
 ABCDEFFEDCBA
  ABCDEEDCBA
   ABCDDCBA
    ABCCBA
     ABBA
      A A_
Program :

#include <stdio.h>
#include <conio.h>
void main()
{
         int i,j,asci,spc;
         clrscr();
         for(i=7; i>=1; i--)
         {
                    for(spc=6; spc>=i; spc--)
                    {
                              printf(" ");
                    }
                    asci=65;
                    for(j=1; j<=i; j++)
                    {
                              printf("%2c",asci++);
                    }
                    for(j=i-1; j>=0; j--)
                    {
                              printf("%2c",--asci);
                    }
                    printf("n");
         }
         getch();
}



    11.        Program to print pyramid in C : Pattern 2 :

Output :



*
*   *
*   **
*   ***
*   * * * *_

Program :

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



    12.        Program to print pyramid in C : Pattern 3 :

Output :

      *
    **
   ***
 ****
* * * * *_

Program :

#include <stdio.h>
#include <conio.h>
void main()
{
         int i,j,k;
         clrscr();
         for(i=1; i<=5; i++)
         {
                    for(j=5; j>=i; j--)
                    {
                              printf(" ");
                    }
                    for(k=1; k<=i; k++)
                    {
                              printf("*");
                    }
                    printf("n");
         }
         getch();
}
13.        Program to all Combinations of characters A,B,C in C : Pattern 1




Output :

AAA AAB AAC ABA ABB ABC ACA ACB ACC BAA BAB BAC BBA BBB
BBC BCA BCB BCC CAA CAB CAC CBA CBB CBC CCA CCB CCC_

Program :

#include <stdio.h>
#include <conio.h>
void main()
{
         char ch1, ch2, ch3;
         clrscr();
         for(ch1='A' ; ch1<='C' ; ++ch1)
         {
                   for(ch2='A' ; ch2<='C' ; ++ch2)
                   {
                            for(ch3='A' ; ch3<='C' ; ++ch3)
                            {
                            printf(" %c%c%c", ch1, ch2, ch3);
                            }
                   }
         }
         getch();
}

More Related Content

What's hot (20)

PPTX
Structure of c program | CS8251 | Programming in c | Learn Hub
Learn Hub
 
PDF
openFrameworks基礎 動きを生みだす、アニメーション入門 - 芸大グラフィックスプログラミング演習B
Atsushi Tadokoro
 
DOCX
Ejercicios c#
marthaleo36
 
DOCX
Par o impar
sirekarol
 
PPTX
Oop lect 10
Tulgaa Gankhuyag
 
PDF
Bcsl 033 data and file structures lab s1-2
Dr. Loganathan R
 
PDF
Programs
Murali Kummitha
 
ODP
Антон Полухин. C++17
Sergey Platonov
 
PPTX
Алексей Кутумов, C++ без исключений, часть 3
Platonov Sergey
 
TXT
Bancocic
edgarflores28
 
PDF
Bhanu Pratap Singh Shekhawat, BCA Third Year
Dezyneecole
 
DOCX
listing output program C
AdjievanGestu
 
PPT
Pertemuan 2 1
Akhza Madridista
 
TXT
PROBLEMAS DE PROGRAMACION 2 por jordan puente quinto
Jordan Puente
 
TXT
C Program : Sorting : Bubble,
Meita Jayani
 
DOCX
Dij
Tushar Bedke
 
ODP
C++14 reflections
corehard_by
 
PPTX
Practico Nº 2
Alan007
 
Structure of c program | CS8251 | Programming in c | Learn Hub
Learn Hub
 
openFrameworks基礎 動きを生みだす、アニメーション入門 - 芸大グラフィックスプログラミング演習B
Atsushi Tadokoro
 
Ejercicios c#
marthaleo36
 
Par o impar
sirekarol
 
Oop lect 10
Tulgaa Gankhuyag
 
Bcsl 033 data and file structures lab s1-2
Dr. Loganathan R
 
Programs
Murali Kummitha
 
Антон Полухин. C++17
Sergey Platonov
 
Алексей Кутумов, C++ без исключений, часть 3
Platonov Sergey
 
Bancocic
edgarflores28
 
Bhanu Pratap Singh Shekhawat, BCA Third Year
Dezyneecole
 
listing output program C
AdjievanGestu
 
Pertemuan 2 1
Akhza Madridista
 
PROBLEMAS DE PROGRAMACION 2 por jordan puente quinto
Jordan Puente
 
C Program : Sorting : Bubble,
Meita Jayani
 
C++14 reflections
corehard_by
 
Practico Nº 2
Alan007
 

Viewers also liked (15)

PPT
Tistrukdat1
Antonius Rachmat C
 
PPTX
Chapter 5.3
sotlsoc
 
PDF
SQL Limit in PHP
Vineet Kumar Saini
 
PDF
CSS in HTML
Vineet Kumar Saini
 
PDF
Browser information in PHP
Vineet Kumar Saini
 
PDF
Pagination in PHP
Vineet Kumar Saini
 
PDF
MVC in PHP
Vineet Kumar Saini
 
PDF
GET and POST in PHP
Vineet Kumar Saini
 
PDF
Practice exam php
Yesenia Sánchez Sosa
 
PDF
PHP Technical Questions
Pankaj Jha
 
PDF
Top 100 PHP Interview Questions and Answers
Vineet Kumar Saini
 
PDF
Top 100 .Net Interview Questions and Answer
Vineet Kumar Saini
 
PDF
Top C Language Interview Questions and Answer
Vineet Kumar Saini
 
PPTX
C program to write c program without using main function
Rumman Ansari
 
PDF
สูตรการหาพื้นที่ผิวและปริมาตร
N'Fern White-Choc
 
Tistrukdat1
Antonius Rachmat C
 
Chapter 5.3
sotlsoc
 
SQL Limit in PHP
Vineet Kumar Saini
 
CSS in HTML
Vineet Kumar Saini
 
Browser information in PHP
Vineet Kumar Saini
 
Pagination in PHP
Vineet Kumar Saini
 
MVC in PHP
Vineet Kumar Saini
 
GET and POST in PHP
Vineet Kumar Saini
 
Practice exam php
Yesenia Sánchez Sosa
 
PHP Technical Questions
Pankaj Jha
 
Top 100 PHP Interview Questions and Answers
Vineet Kumar Saini
 
Top 100 .Net Interview Questions and Answer
Vineet Kumar Saini
 
Top C Language Interview Questions and Answer
Vineet Kumar Saini
 
C program to write c program without using main function
Rumman Ansari
 
สูตรการหาพื้นที่ผิวและปริมาตร
N'Fern White-Choc
 
Ad

More from Vineet Kumar Saini (20)

PDF
Abstract Class and Interface in PHP
Vineet Kumar Saini
 
PDF
Add edit delete in Codeigniter in PHP
Vineet Kumar Saini
 
PDF
Introduction to Html
Vineet Kumar Saini
 
PDF
Computer Fundamentals
Vineet Kumar Saini
 
PDF
Country State City Dropdown in PHP
Vineet Kumar Saini
 
PDF
Stripe in php
Vineet Kumar Saini
 
PDF
Php Tutorials for Beginners
Vineet Kumar Saini
 
PDF
Install Drupal on Wamp Server
Vineet Kumar Saini
 
PDF
Joomla 2.5 Tutorial For Beginner PDF
Vineet Kumar Saini
 
PDF
Functions in PHP
Vineet Kumar Saini
 
PDF
Sorting arrays in PHP
Vineet Kumar Saini
 
PDF
Dropdown List in PHP
Vineet Kumar Saini
 
PDF
Update statement in PHP
Vineet Kumar Saini
 
PDF
Delete statement in PHP
Vineet Kumar Saini
 
PDF
Implode & Explode in PHP
Vineet Kumar Saini
 
PDF
Types of Error in PHP
Vineet Kumar Saini
 
PDF
Database connectivity in PHP
Vineet Kumar Saini
 
PDF
Arrays in PHP
Vineet Kumar Saini
 
PDF
Operators in PHP
Vineet Kumar Saini
 
PDF
Variables in PHP
Vineet Kumar Saini
 
Abstract Class and Interface in PHP
Vineet Kumar Saini
 
Add edit delete in Codeigniter in PHP
Vineet Kumar Saini
 
Introduction to Html
Vineet Kumar Saini
 
Computer Fundamentals
Vineet Kumar Saini
 
Country State City Dropdown in PHP
Vineet Kumar Saini
 
Stripe in php
Vineet Kumar Saini
 
Php Tutorials for Beginners
Vineet Kumar Saini
 
Install Drupal on Wamp Server
Vineet Kumar Saini
 
Joomla 2.5 Tutorial For Beginner PDF
Vineet Kumar Saini
 
Functions in PHP
Vineet Kumar Saini
 
Sorting arrays in PHP
Vineet Kumar Saini
 
Dropdown List in PHP
Vineet Kumar Saini
 
Update statement in PHP
Vineet Kumar Saini
 
Delete statement in PHP
Vineet Kumar Saini
 
Implode & Explode in PHP
Vineet Kumar Saini
 
Types of Error in PHP
Vineet Kumar Saini
 
Database connectivity in PHP
Vineet Kumar Saini
 
Arrays in PHP
Vineet Kumar Saini
 
Operators in PHP
Vineet Kumar Saini
 
Variables in PHP
Vineet Kumar Saini
 
Ad

Programming in C

  • 1. 1. Program to print pyramid in C : Pattern 4 : Output : ***** **** *** ** *_ Program : #include <stdio.h> #include <conio.h> void main() { int i,j,k,samp=1; clrscr(); for(i=5; i>=1; i--) { for(k=samp; k>=0; k--) { printf(" "); // only 1 space } for(j=i; j>=1; j--) { printf("*"); } samp = samp + 1; printf("n"); } getch(); } 2. Program to print pyramid in C : Pattern 5 : Output : ***** **** *** ** *_ Program :
  • 2. #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(); } 3. Program to print pyramid in C : Pattern 6 : Output : * ** *** **** * * * * *_ Program : #include <stdio.h> #include <conio.h> void main() { int i,j,k,t=0; clrscr(); for(i=1; i<=5; i++) { for(k=t; k<5; k++) { printf(" "); } for(j=0; j< i; j++) { printf(" * "); t = t + 1; } printf("n"); } getch(); }
  • 3. 4. Program to print pyramid in C : Pattern 7 : Output : * ** *** **** ***** **** *** ** *_ Program : #include <stdio.h> #include <conio.h> void main() { int i,j,k,samp=1; clrscr(); for(i=1; i<=5; i++) { for(k=samp; k<=5; k++) { printf(" "); } for(j=0; j< i; j++) { printf("*"); } samp = samp + 1; printf("n"); } samp = 1; for(i=4; i>=1; i--) { for(k=samp; k>=0; k--) { printf(" "); } for(j=i; j>=1; j--) { printf("*"); } samp = samp + 1;
  • 4. printf("n"); } getch(); } 5. Program to print pyramid in C : Pattern 8 : Output : Enter number of rows: 5 1 23 456 7 8 9 10 11 12 13 14 15_ Program : #include <stdio.h> #include <conio.h> void main() { int rw, c, no=1 ,len; clrscr(); printf("Enter number of rows: "); scanf("%d," &len); for(rw=1; rw<=len; rw++) { printf("n"); for(c=1; c<=rw; c++) { printf(" %2d ", no); no++; } } getch(); }
  • 5. 6. Program to print pyramid in C : Pattern 9 : Output : Enter number of rows: 5 0 101 21012 3210123 432101234 5 4 3 2 1 0 1 2 3 4 5_ Program : #include <stdio.h> #include <conio.h> void main() { int no,i,y,x=35; clrscr(); printf("Enter number of rows: "); scanf("%d," &no); for(y=0;y<=no;y++) { goto(x,y+1); for(i=0-y; i<=y; i++) { printf(" %3d ", abs(i)); x=x-3; } } getch(); } 7. Program to print pyramid in C : Pattern 10 : Output : 1 22 333 4444 5 5 5 5 5_ Program : #include <stdio.h> #include <conio.h> void main()
  • 6. { int i, j=5, k, x; clrscr(); for(i=1;i<=5;i++) { for(k=1;k<=j;k++) { printf(" "); } for(x=1;x<=i;x++) { printf("%d",i); printf(" "); } printf("n"); j=j-1; } getch(); } 8. Program to print pyramid in C : Pattern 11 : Output : 1 12 123 1234 1 2 3 4 5_ Program : #include <stdio.h> #include <conio.h> void main() { int rw,c,no,spc; clrscr(); printf("Enter number of rows : "); scanf("%d", &no); for(rw=1; rw<=no; rw++) { for(spc=no; spc>=rw; spc--) { printf(" "); } for(c=1; c<=rw; c++) { printf("%2d",c); } printf("n");
  • 7. } getch(); } 9. Program to print pyramid in C : Pattern 12 : Output : 1 123 12345 1234567 1 2 3 4 5 6 7 8 9_ Program : #include <stdio.h> #include <conio.h> void main() { int i,j,k; clrscr(); for(i=1; i<=5; i++) { for(j=1; j<=5-i; j++) { printf(" "); } for(k=1; k<=2*i-1; k++) { printf(" %d ",k); } printf("n"); } getch(); } 10. Program to print pyramid in C : Pattern 13 : Output : ABCDEFGGFEDCBA ABCDEFFEDCBA ABCDEEDCBA ABCDDCBA ABCCBA ABBA A A_
  • 8. Program : #include <stdio.h> #include <conio.h> void main() { int i,j,asci,spc; clrscr(); for(i=7; i>=1; i--) { for(spc=6; spc>=i; spc--) { printf(" "); } asci=65; for(j=1; j<=i; j++) { printf("%2c",asci++); } for(j=i-1; j>=0; j--) { printf("%2c",--asci); } printf("n"); } getch(); } 11. Program to print pyramid in C : Pattern 2 : Output : * * * * ** * *** * * * * *_ Program : #include <stdio.h> #include <conio.h> void main() { int i,j; clrscr(); for(i=0; i<5; i++) { for(j=0; j<=i; j++)
  • 9. { printf(" * "); } printf("n"); } getch(); } 12. Program to print pyramid in C : Pattern 3 : Output : * ** *** **** * * * * *_ Program : #include <stdio.h> #include <conio.h> void main() { int i,j,k; clrscr(); for(i=1; i<=5; i++) { for(j=5; j>=i; j--) { printf(" "); } for(k=1; k<=i; k++) { printf("*"); } printf("n"); } getch(); }
  • 10. 13. Program to all Combinations of characters A,B,C in C : Pattern 1 Output : AAA AAB AAC ABA ABB ABC ACA ACB ACC BAA BAB BAC BBA BBB BBC BCA BCB BCC CAA CAB CAC CBA CBB CBC CCA CCB CCC_ Program : #include <stdio.h> #include <conio.h> void main() { char ch1, ch2, ch3; clrscr(); for(ch1='A' ; ch1<='C' ; ++ch1) { for(ch2='A' ; ch2<='C' ; ++ch2) { for(ch3='A' ; ch3<='C' ; ++ch3) { printf(" %c%c%c", ch1, ch2, ch3); } } } getch(); }