google.com, pub-8786015629279405, DIRECT, f08c47fec0942fa0 Write a Program to Print Pascal's triangle in C.

Write a Program to Print Pascal's triangle in C.

0

 


// Write a Program to Print Pascal's triangle in C.

 

#include <stdio.h>

#include <conio.h>

 

void main() {

   int rows, coef = 1, space, i, j;

   printf("Enter the number of rows: ");

   scanf("%d", &rows);

   for (i = 0; i < rows; i++) {

      for (space = 1; space <= rows - i; space++)

         printf("  ");

      for (j = 0; j <= i; j++) {

         if (j == 0 || i == 0)

            coef = 1;

         else

            coef = coef * (i - j + 1) / j;

         printf("%4d", coef);

      }

      printf("\n");

   }

}

 

 

Output

 Enter the number of rows: 6

              1

           1   1

        1   2   1

      1   3   3    1

   1  4    6   4   1

 1  5   10   10  5   1

 

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.

Thank you for your interest 😊

We will back shortly after reviewing...

Thank you for your interest 😊

We will back shortly after reviewing...

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Learn More
Accept !
To Top