"Pascal Triangle gfg" Code Answer's

You're definitely familiar with the best coding language C that developers use to develop their projects and they get all their queries like "Pascal Triangle gfg" answered properly. Developers are finding an appropriate answer about Pascal Triangle gfg related to the C coding language. By visiting this online portal developers get answers concerning C codes question like Pascal Triangle gfg. Enter your desired code related query in the search bar and get every piece of information about C code related question on Pascal Triangle gfg. 

how to find the ith row of pascal's triangle in c

By C WillC Will on Apr 25, 2020
#include <stdio.h>
#include <stdlib.h>

int main()
{
  int N;

  scanf("%d", &N);
  int pascalArray[N + 1][N + 1];
  int i, j;
  if(0 <= N && N <= 20)
  {
      for (i = 0; i < N + 1; i++)
      {
        for(j = 0; j <= i; j++)
        {
            if(j == 0 || j == i)
                pascalArray[i][j] = 1;
            else
                pascalArray[i][j] = pascalArray[i-1][j-1] + pascalArray[i-1][j];
            if (i == N)
                printf("%d ", pascalArray[i][j]);
        }
      }
  }
  return 0;
}

Add Comment

1

All those coders who are working on the C based application and are stuck on Pascal Triangle gfg can get a collection of related answers to their query. Programmers need to enter their query on Pascal Triangle gfg related to C code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about Pascal Triangle gfg for the programmers working on C code while coding their module. Coders are also allowed to rectify already present answers of Pascal Triangle gfg while working on the C language code. Developers can add up suggestions if they deem fit any other answer relating to "Pascal Triangle gfg". Visit this developer's friendly online web community, CodeProZone, and get your queries like Pascal Triangle gfg resolved professionally and stay updated to the latest C updates. 

C answers related to "Pascal Triangle gfg"

View All C queries

C queries related to "Pascal Triangle gfg"

Browse Other Code Languages

CodeProZone