Ask Question - Get Answer

1 Ans Write a C program to print Pascal Triangle

Asked by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:37 PM at (Education Tutorials)

Please log in to answer, like and save
0
Save 0

<<< Previous
Log in to Answer Next >>>

Answer(s):

A C program to print Pascal Triangle :


#include<stdio.h>

int main()

{

    int i, j, n, number=1, space, coef=1;

    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; ///at first * er kaj, then / er kaj

            printf("%2d", coef);

            ///printf("i = %d; j = %d; coef * (i-j+1)/j = %d     ", i, j, coef);

        }

        printf("\n");

    }

    return 0;

}


Answered by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:38 PM

Please log in to Upvote, Downvote and Report
           

Related Q/A:

1 Ans Write a C++ program for BigMod math

1 Ans Write a C program to implement x power n using recursion

1 Ans Write a C program to implement Insertion sort data structure and algorithm

1 Ans Write a C program for Interest Calculation

1 Ans Write a C program to find nth Fibonacci number

3 Ans BPSC Assistant Programmer Lab Aptitude test Programs and Queries with Proper solution (Taken By BCC)

1 Ans Write a C program to print Fibonacci number series

2 Ans BPSC aptitude test all programs solutions here

1 Ans Write a C program to check a perfect number

3 Ans Three ways to find Greatest Common Divisor (GCD) and Least Common Multiple (LCM) in a C program