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 to check a Prime number

1 Ans Write a C program to check Bubble sort data structure and algorithm

2 Ans BPSC Programming Aptitude Lab Test Important programs

1 Ans Write a C program to check a Palindrome Number

1 Ans A Quest for Peace in the Middle East: Recent Perspectives - composition

1 Ans Which is the best and easy C programming learning website ?

1 Ans Write a C Program to check Anagrams of two strings

1 Ans How to Learn HTML - HyperText Markup Language easily? 

1 Ans Write a C program to print Floyd Triangle

1 Ans Single Digit Interest Rate in the Banking Sector: Problems and Prospects - essay writing