Thursday, 16 November 2017

C Program to Display Pascal triangle


Code:

#include   stdio.h

void main()
{
    int array[15][15], i, j, rows, num = 25, k;

    printf("\n enter the number of rows:");
    scanf("%d", &rows);
    for (i = 0; i < rows; i++)
    {
        for (k = num - 2 * i; k >= 0; k--)
            printf(" ");
    for (j = 0; j <= i; j++)
    {
                if (j == 0 || i == j)
{
                    array[i][j] = 1;
                }
                else
                {
                    array[i][j] = array[i - 1][j - 1] + array[i - 1][j];
}
printf("%4d", array[i][j]);
            }
            printf("\n");
    }
}


Output:

enter the number of rows:2
                             1
                           1   1



More C Programs:













100+ Best Home Decoration Ideas For Christmas Day 2019 To Make Home Beautiful

Best gifts for Christmas Day | Greeting cards for Christmas Day | Gift your children a new gift on Christmas day This Christmas d...