In this tutorial, we will discuss the concept of the C code to Generate Pascal’s triangle using a 2 D array
In this topic, we are going to learn how to write a program to print Pascal triangle number patterns using a two dimension Array in the C programming language
Here, we use for, while, and do-while loops for printing pascal triangle
In this program, the user declares and initializes integer variables, it will display a pascal triangle number pattern using for loop in the C language according to the rows
Program 1
#include <stdio.h> #include <stdlib.h> int main() { int arr[50][50]; int i=0,j=0,num=0; printf("Enter the number o rows: "); scanf("%d",&num); for(i=0; i<num; i++){ for(j=0; j<num-1-i; ++j) printf(" "); for(j=0; j<=i; ++j){ if(j==0 || j==i) arr[i][j]=1; else arr[i][j]=arr[i-1][j-1]+arr[i-1][j]; printf("%d ", arr[i][j]); } printf("\n"); } getch(); return 0; }
When the above code is executed, it produces the following result
In this program, the user declares and initializes integer variables, it will display a pascal triangle number pattern using a while loop in the C language according to the rows
Program 1
#include <stdio.h> #include <stdlib.h> int main() { int arr[50][50]; int i=0,j=0,num=0; printf("Enter the number o rows: "); scanf("%d",&num); i=0; while(i<num){ j=0; while(j<num-1-i){ printf(" "); ++j; } j=0; while(j<=i){ if(j==0 || j==i) arr[i][j]=1; else arr[i][j]=arr[i-1][j-1]+arr[i-1][j]; printf("%d ", arr[i][j]); ++j; } printf("\n"); i++; } getch(); return 0; }
When the above code is executed, it produces the following result
In this program, the user declares and initializes integer variables, it will show a pascal triangle number pattern using a do-while loop in the C language according to the rows
Program 3
#include <stdio.h> #include <stdlib.h> int main() { int arr[50][50]; int i=0,j=0,num=0; printf("Enter the number o rows: "); scanf("%d",&num); i=0; do{ j=0; do{ printf(" "); ++j; }while(j<=num-1-i); j=0; do{ if(j==0 || j==i) arr[i][j]=1; else arr[i][j]=arr[i-1][j-1]+arr[i-1][j]; printf("%d ", arr[i][j]); ++j; }while(j<=i); printf("\n"); i++; }while(i<num); getch(); return 0; }
When the above code is executed, it produces the following result
Suggested for you
Data type and variable in Java language
The operator in the Java language
Similar post
Java program to print pascal triangle
C program to print pascal triangle
C++ program to print pascal triangle
Java program to print pascal triangle using an array
Java program to print pascal triangle using array using user input
C program to print a pascal triangle using an array
C program to print pascal triangle using array using user input
Java program to pascal triangle number pattern using 2 D array
How to find reverse number using method In this article, we will discuss the concept…
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…