Skip to main content

C Program to print the PASCAL Triangle up to the Nth row where n is a value inputted by the user

 C Program to print the PASCAL Triangle up to the Nth row where n is a value inputted by the user. 

.    In this example, we will print a Pascal's triangle upto to the value of the Nth row entered by the user. In the output section we have taken the value of n as 6 and the pascal's triangle is shown in the output. No, it is not that you have to take the value of n as 6, you can enter any value according to your choice. And the required pascal's tringle will be available on the screen. 

What is Pascal's Triangle?

Pascal's Triangle is a triangular arrangement of the binaomaial coefficients of the expansion (x+y)n

 for positive integral values of n.


PROGRAM  TO PRINT THE PASCAL TRIANGLE UP TO THE N-TH ROW WHERE N IS A VALUE INPUTTED BY THE USER:

#include<stdio.h>
#include<conio.h>
void main()
{
    int n,coef=1,space,i,j;
    printf("Enter the value of n:");        
    scanf("%d",&n);
    for(i=0;i<n;i++)
    {
        for(space=1;space<=n-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");
    }
    getch();
}   


OUTPUT  TO PRINT THE PASCAL TRIANGLE UP TO THE N-TH ROW WHERE N IS A VALUE INPUTTED BY THE USER:

Enter the value of n:6

               1

             1   1

           1   2   1

         1   3   3   1

       1   4   6   4   1

     1   5  10  10   5   1


NOTE: You Can Comment Your Code if you have solved differently and we will pin it in the comment section.  Let's Learn together. 


MOTTO: 

                    You Learn, I Learn together We Learn.

Comments